Recent Posts
Notice
No Rules Rules
N 찍기 (feat. 백준, 2741번) 본문
728x90
반응형
N 찍기
https://www.acmicpc.net/problem/2741
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
cin >> N;
for(register int n = 1; n <= N; ++n)
cout << n << "\n";
return 0;
}
// *&)*@*
문제의 요구사항에 따라 1부터 N까지를 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
MBTI (feat. 백준, 25640번) (0) | 2022.09.26 |
---|---|
푸앙이와 종윤이 (feat. 백준, 25591번) (0) | 2022.09.23 |
검증수 (feat. 백준, 2475번) (0) | 2022.09.23 |
음계 (feat. 백준, 2920번) (0) | 2022.09.23 |
돌멩이 제거 (feat. 백준, 1867번) (2) | 2022.09.22 |
Comments