정수 한 개 입력받아 카운트다운 출력하기2(설명) [0074 / 004A] 
Time Limit(Test case) : 1000(ms)Number of users who solved : 3312 Total Tried : 3466
The Champion of this Problem (C++) : abc6271416 - 0ms / 69byte
My Best Submission (C++) : N/A
[HSJeon 2013]

Background
정수(1 ~ 100) 한 개가 입력되었을 때 카운트다운을 출력해보자.예시
int n;
scanf("%d", &n);
while(n!=0)
{
n=n-1; //n--; 와 같다.
printf("%d", n);
}
(C언어 기초 100제 v1.1)
Input
정수 한 개가 입력된다.1 ~ 100
Output
1씩 줄이면서 한 줄에 하나씩 0이 될 때까지 출력한다.IO Example
입력5
출력
4
3
2
1
0
Prob Analysis : [Problem Statistics] | [Solution]