0
What is while and do while loop tell me proper syntax
3 Antworten
+ 4
code is very simple try writing console while loop and search google c# console while loop
+ 3
Didn't you get to the lesson yet?
while(i > 3)
{
//body
}
do
{
//body
} while(x != 9);
+ 1
thNxDeo I read lesson but I get confused