+ 1
Fill in the blanks to print the values of the x variable 5 times.
Fill in the blanks to print the values of the x variable 5 times. int x = 1; do { System.out.println(x); x++; } _____(x <=__ );
16 Antworten
+ 17
Aren't I always? 😎 Thanx
+ 9
My bad.. Jafca is right :)
+ 8
while
5
+ 7
Oops, where'd she go? It was an honest mistake 😉
+ 7
Definitely 😇
+ 2
thanks i'm new in Java!
+ 2
@Washington you can also try out that code on the code playground
+ 1
Fill in the blanks to print x variable's values 10 times.
int x = 0;
do {
cout << x << endl;
x++;
}
while
(x <
10
);
+ 1
what =5
0
this correct
while (x<=5);
0
while (x<=5);
0
for,+
0
``````````````````````````
0
Fill in the blanks to output the value of the open Boolean variable:
0
2
8 Comments
Fill in the blanks to print "SoloLearn" to the screen 3 times using the for loop:
(int i = 0; i
3; ++i) {
printf("SoloLearn");
}
- 2
}while(x<=5);