문제 링크 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV2gbY0qAAQBBAS0
문제의 저작권은 SW Expert Academy에 있습니다.
#include <iostream> using namespace std; int main(void) { int N; cin >> N; for(int i=N; i>0; i--) { cout << i << " "; } cout << "0\n"; return 0; } | cs |
'C & C++ > SW Expert Academy' 카테고리의 다른 글
SWEA 1974 - 스도쿠 검증 (0) | 2018.04.28 |
---|---|
SWEA 1976 - 시각 덧셈 (0) | 2018.04.27 |
SWEA 2019 - 더블더블 (0) | 2018.04.27 |
SWEA 1936 - 1대1 가위바위보 (0) | 2018.04.27 |
SWEA 1933 - 간단한 N 의 약수 (0) | 2018.04.27 |