i have this for loop:
for (int i = 1; i <= 10; i++) {
System.out.println(i);
}
and want to:
Show a revision of this code that counts from 1 to 10 but skips the number 7. Don't use more than one loop.
i'd appreciate any help
thanks
peace
Bookmarks