NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1107 : 반복 출력하기 1

1nfra 2020. 5. 1. 17:18
728x90
1
2
3
4
5
6
7
8
9
#include <stdio.h>
 
int main() {
    int i;
    for (i = 0; i < 50; i++) {
        printf("print");
    }
}
 
cs
728x90