Study/BAEKJOON

[BAEKJOON] 2742번 : 기찍 N

1nfra 2020. 9. 13. 18:31
728x90
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
int main() {
 
    int a=0,i=0;
    scanf("%d"&a);
 
    for (i=a;a>0;a--) {
        printf("%d\n", a);
    }
}
cs
728x90