...
| Code Block |
|---|
for(int i=0; i <= 100; i++)
{
println(i);
} |
While-loop
...
while([condition]) {
}
| Code Block |
|---|
int x=0;
while(x <= 100)
{
println(x);
x++;
} |
...
...
| Code Block |
|---|
for(int i=0; i <= 100; i++)
{
println(i);
} |
...
while([condition]) {
}
| Code Block |
|---|
int x=0;
while(x <= 100)
{
println(x);
x++;
} |
...