int i = 0;
while (i < 5) {
System.out.print(i+" "); }
while (i < 5) {
System.out.print(i+" "); }
Anonymous Quiz
48%
0 1 2 3 4
12%
0 1 2 3 4 5
21%
the loop will never end
19%
ERROR
👍1
int i = 0;
do {
System.out.print(i+" "); i++; } while (i < 5);
do {
System.out.print(i+" "); i++; } while (i < 5);
Anonymous Quiz
60%
0 1 2 3 4
18%
0 1 2 3 4 5
22%
the loop will never end
جافا Java
Photo
ماهي مخرجات البرنامج
Anonymous Quiz
21%
0 1 2 3
17%
0 1 2 3 4
46%
0 1 2 3 5 6 7 8 9
17%
0 1 2 3 4 5 6 7 8 9