Q&A Discussions
Matrix Python
1 Vote
8 AnswersTake inputs given
0 Votes
1 Answerhow to\loop alphabet
0 Votes
3 AnswersShort Crazy Quiz Java
3 Votes
4 AnswersHow to put in loop?
0 Votes
3 Answersx = 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 Votes
2 AnswersBest way to learn coding?
0 Votes
3 AnswersWhile loop, Being Choosy,
0 Votes
3 AnswersHot today
Safety Deposit Boxes
2 Votes
__str__ in Python...
0 Votes
Input sand outputs
0 Votes
Follower
1 Votes
Start
1 Votes
how to use ardino uno???
0 Votes