JavaTXCompilerInJavaTX/app/resources/bytecode/javFiles/While.jav
2023-01-10 14:22:05 +01:00

12 lines
154 B
Java

import java.lang.Integer;
import java.lang.Long;
import java.lang.Double;
public class While {
m(x) {
while(x < 2) {
x = x+1;
}
return x;
}
}