11.3 Daily

11.3 Daily

Average seek
Articles

Enter five times in the exercise to get an average score

The exercise outputs the sum that is not divisible by three in the range of 1-100.
Loop control
Exit loop
break

Features

When break is encountered in the loop, it will jump out of the entire loop code block and
will not continue to the next loop.
Summary
break

Jump out of the entire loop, the interpreter will execute the code behind the loop body
continue

Skip this round of loop, and continue to the next round of loop
Game loop
Loading
...
Login
Whether to exit
Choose game Play
a game
Whether to exit
Choose a game Play
a game
Whether to exit

Guess you like

Origin blog.csdn.net/zzxin1216/article/details/109470024