Last active
January 22, 2020 13:48
-
-
Save lotarbo/01aac21a333dd313b9e77119bd33e03d to your computer and use it in GitHub Desktop.
Dart Homework Section 3 Task 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void main() { | |
| int i; | |
| for (i = 1; i < 100; i++) { | |
| if (i % 3 == 0 && i % 5 ==0) { | |
| print('Super Quiz'); | |
| continue; | |
| } | |
| if (i % 3 == 0) { | |
| print('Super'); | |
| continue; | |
| } | |
| if (i % 5 == 0) { | |
| print('Quiz'); | |
| continue; | |
| } | |
| print(i); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment