하루의 쉼터

[반복문] 2741. N 찍기 - C++ 본문

Coding Test/BaekJoon

[반복문] 2741. N 찍기 - C++

Changun An 2022. 1. 12. 16:28
반응형

| 2741. N 찍기 - C++

Category :

반복문 - For

Title :

2741. N 찍기

Rank :

Bronze

Language :

C++

Question :

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

Condition :
Input
첫째 줄에 100,000보다 작거나 같은 자연수 N이 주어진다.


Output
첫째 줄부터 N번째 줄 까지 차례대로 출력한다.

Code :

#include<iostream>
class cl_solution{
public :
	void fn_run(int num);
};
void cl_solution::fn_run(int num){	
	std::ios_base::sync_with_stdio(false);
	std::cin.tie(NULL);
	if (num <= 100000 && num > 0) {
		int i = 1;
		while (i <= num) {
			std::cout << i<<"\n";
			i++;
		}
	}
}
int main() {
	cl_solution sol;
	int num = 0;
	std::cin >> num;
	sol.fn_run(num);
	return 0;
}

BackJoon :

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

 

2741번: N 찍기

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

www.acmicpc.net

GitHub :

https://github.com/Anchangun/BackJoon/tree/main/Question/Print/2741.%20N%EC%B0%8D%EA%B8%B0

 

GitHub - Anchangun/BackJoon

Contribute to Anchangun/BackJoon development by creating an account on GitHub.

github.com

반응형

'Coding Test > BaekJoon' 카테고리의 다른 글

[반복문] 11021. A+B - 7, - C++  (0) 2022.01.12
[반복문] 2742. 기찍 N - C++  (0) 2022.01.12
[반복문] 15552. 빠른 A+B - C++  (0) 2022.01.12
[반복문] 8393. 합 - C++  (0) 2022.01.12
[반복문] 10950. A+B - 3, - C++  (0) 2022.01.12
Comments