NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1088 : [기초-종합] 3의 배수는 통과?

1nfra 2019. 7. 24. 04:16
728x90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
int main() {
    int i, j = 1;
    scanf("%d"&i);
    for (int j = 1; j <= i; j++) {
        if (j % 3 == 0) {
            continue;
        }
        printf("%d ", j);
    }
 
    return 0;
}
 
cs
728x90