NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1108 : 반복 출력하기 2

1nfra 2020. 5. 1. 17:19
728x90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
 
int main() {
    int i;
    for (i = 0; i < 20; i++) {
        printf("hello");
    }
    printf(" ");
    int j;
    for (i = 0; i < 30; i++) {
        printf("world");
    }
}
 
cs
728x90