[백준/BOJ] 백준 2741번 : N 찍기

2020. 7. 22. 18:10알고리즘 문제풀이

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

 

2741번: N 찍기

자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오.

www.acmicpc.net

for문을 이용해 1부터 n까지 출력한다.

 

코드

#include <iostream>
using namespace std;

int main()
{
	cin.tie(NULL);
	ios_base::sync_with_stdio(false);

	int n;

	cin >> n;

	//for문을 이용해 1부터 n까지 출력한다
	for (int i = 1; i <= n; i++)
	{
		cout << i << "\n";
	}

	return 0;
}