본문 바로가기

algorithm

백준 2741번 N 찍기

https://www.acmicpc.net/problem/2741

 

아이디어:

for문으로 출력

 

// 2741

#include <iostream>

using namespace std;

int main() {

	ios::sync_with_stdio(false);
	cin.tie(NULL);

	int n;

	cin >> n;

	for (int i = 0; i < n; i++) {
		cout << i + 1 << "\n";
	}

	return 0;
}

'algorithm' 카테고리의 다른 글

백준 2744번 대소문자 바꾸기  (1) 2024.10.27
백준 10872번 팩토리얼  (0) 2024.10.27
백준 2420번 사파리월드  (0) 2024.10.27
백준 7287번 등록  (0) 2024.10.27
백준 10699번 오늘 날짜  (0) 2024.10.27