c/기초

정올 536 : 반복제어문1-자가진단1

phantom0219 2019. 1. 10. 19:03




My Solution


1
2
3
4
5
6
7
8
9
#include<stdio.h>
int main(void){
    int num=1;
    while(num<=15){
        printf("%d ",num);
        num++;
    }
    return 0;
}
cs


반응형