0
{HELP}
int x = 1; while (x <= ) { System.out.println("in a loop"); ++; }
2 Respuestas
+ 2
The code is not complete please complete and rearrange it to be clear for us
0
int x = 1;
while (x++ <= 5 ) { System.out.println("in a loop"); }
int x = 1; while (x <= ) { System.out.println("in a loop"); ++; }