Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
int main() {
int i;
for (i = 1; i <= 5; i++) {
if (i == 3)
continue;
if (i == 5)
break;
printf("%d\n", i);
}
return 0;
}Coding works best on desktop or with an external keyboard.