Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Practice With Loops Quiz
This Java template lets you get started quickly with a simple one-page playground.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class Main {
public static void main(String[] args) {
//Practice With Loops Quiz #2
int count = 0;
while (count != 500) {
System.out.print(count);
System.out.print(" ");
count = count + 50;
}
System.out.print("...");
}
}
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content