#include <iostream>
using namespace std;
int main(void)
{
int N = 0;
cin >> N;
if (N>=1 and N<=100000)
{
for (int i=N; i>0; i--)
{
cout << i << '\n';
}
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 2748번 피보나치 수 2 (파이썬) (0) | 2022.06.14 |
---|---|
[백준] 2747번 피보나치 수 (파이썬) (0) | 2022.03.17 |
[백준] 2741번 N 찍기 (C++) (0) | 2022.03.16 |
[백준] 2739번 구구단 (C) (0) | 2022.03.16 |
[백준] 2675번 문자열 반복 (파이썬) (0) | 2022.03.16 |