+ 1
C# The While Loop Breaking my brain
Hi ! I don't know why but I seem to not understand the exercises.. Can someone explain me why is there an other int in those exercises ? I can't really seize the meaning of that class. I'm very low level in math in general. I succeed in al the last classes before this one and it breaks my brain :') Can you explain me it with other words please ? (I'm French so I do what I can to understand ^^)
5 Answers
+ 2
While loop is a loop which executes untill a predicate satisfies
Else it does not terminates
+ 2
Wow thanks a lot to you all for your help! I think I get it now :) Special thanks to Rushikesh and Andy_Roid đ
+ 1
Code will be come soon
+ 1
While loop repeats as long as the condition is true.
e.g. While the number is less than 100 i will keep adding 1to it until i get a number greater than hundred.
or
as long as the number is less than 100 i will keep adding 1 to it.