Practice With Loops Quiz
ProfKirk
4,417 views
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
public class Main {
public static void main(String[] args) {
//Practice With Loops Quiz #1
System.out.println("Infinite Loop");
int x = 0;
while (x < 35) {
System.out.println(x);
x--;
}
}
}
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.