forked from JavaTX/JavaCompilerCore
27 lines
207 B
Java
Executable File
27 lines
207 B
Java
Executable File
package test;
|
|
|
|
|
|
|
|
public class Zwei
|
|
{
|
|
int i,a;
|
|
|
|
private void schleifen()
|
|
{
|
|
if( i <= 10)
|
|
{
|
|
i--;
|
|
}
|
|
else
|
|
{
|
|
i++;
|
|
a *= 2;
|
|
a = i+22;
|
|
}
|
|
int r = 0;
|
|
while (r !=10)
|
|
{
|
|
r++;
|
|
}
|
|
}
|
|
} |