Discussions Q&R
Why it’s 70 and not 69?
2 Votes
6 RéponsesWhat is my mistake?
0 Vote
1 RéponseC++
1 Vote
5 Réponsesx = 42;
int num = 0;
while (num <3)
Consele.writeline (x);
num++;
int x = 42; is just an int with an asigned value of 42
int num=0; is what initiate the count for the while loop
while (num < 3); means 0<3 true, 1< 3 true, 2<3 true, the loop end at 2 bc 3 <3 is false
consele.writeline (x) will display 42 while num < 3
num++ will execute and then add 1 to check if the while loop still true, but it stop at 2, bc 3 makes it false.
so the consele.write will write 42 three times. x=42, remember the (x)
0 Vote
2 Réponsesneed help plz
0 Vote
2 RéponsesMethod in python
0 Vote
2 RéponsesIsometric Coordinates
4 Votes
9 RéponsesAujourd'hui en vedette
Checking personal activity
0 Votes
Help
0 Votes
Where is the error
0 Votes
Use of global function in c
0 Votes
Which one is better?? And why??
1 Votes
Python
0 Votes
Full form of HTML
0 Votes
Tryna learn dunno where to start
0 Votes