Code: Select all
class test {
public static void main(String[] args){
int x = 0;
int y = 0;
while( x < 5 ){
y = y - x;
System.out.print(x + "" + y + " ");
x += 1;
}
}
}
< /code>
Ich kompile es in der Eingabeaufforderung und ich erhalte Folgendes: < /p>
00 1-1 2-3 3-6 4-10
< /code>
wobei ich erwartet hatte, dass die Ausgabe: < /p>
sein soll00 11 23 36 210