Skip to content

Instantly share code, notes, and snippets.

@lotarbo
Last active January 22, 2020 13:48
Show Gist options
  • Select an option

  • Save lotarbo/01aac21a333dd313b9e77119bd33e03d to your computer and use it in GitHub Desktop.

Select an option

Save lotarbo/01aac21a333dd313b9e77119bd33e03d to your computer and use it in GitHub Desktop.
Dart Homework Section 3 Task 1
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