bb26112a9b
modified: Fac.jav modified: Faculty.jav modified: OL.jav modified: While.jav modified: ../../javFiles/AddLong.jav
14 lines
271 B
Java
14 lines
271 B
Java
import java.lang.Integer;
|
|
// wenn nur ein Import da steht,wird die Type von
|
|
// dem Literal 2 Number berechnet => Deswegen kann
|
|
// nicht auf den Stack geladen.
|
|
import java.lang.Long;
|
|
|
|
public class While {
|
|
Integer m(x) {
|
|
while(x < 2) {
|
|
x = x+1;
|
|
}
|
|
return x;
|
|
}
|
|
} |