Daniel Holle
ebd6a00a39
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 2m50s
12 lines
161 B
Java
12 lines
161 B
Java
import java.lang.Integer;
|
|
import java.lang.Long;
|
|
import java.lang.Double;
|
|
|
|
public class While {
|
|
public m(x) {
|
|
while(x < 2) {
|
|
x = x+1;
|
|
}
|
|
return x;
|
|
}
|
|
} |