+ 1
How to use loops? Like do while and while
4 odpowiedzi
+ 6
This might might help
while loop:
while (condition) {
}
do while loop:
do {
}
while (condition);
tell me if something is missing or correct me if i'm wrong
+ 5
for loop
https://www.sololearn.com/post/238521/?ref=app
while loop
https://www.sololearn.com/post/238523/?ref=app
do while loop
https://www.sololearn.com/post/238524/?ref=app
+ 3
Start by using the "Try it yourself" codes, modify a bit here and there and try to run the code. Observe what changes came with each edits you made to the example. This is how I got through it, hope it works for you too 👍
0
Im a beginner in using loops, it's complicated for me to write a code