하루의 쉼터

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

Coding Test/BaekJoon

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

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

| 2839. 기찍 N - C++

Category :

반복문 - For

Title :

2742. 기찍 N

Rank :

Bronze

Language :

C++

Question :

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

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 << num << "\n";
			num--;
		}
	}
}
int main() {
	cl_solution sol;
	int num = 0;
	std::cin >> num;

	sol.fn_run(num);
	return 0;
}

BackJoon :

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

 

2742번: 기찍 N

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

www.acmicpc.net

GitHub :

https://github.com/Anchangun/BackJoon/tree/main/Question/Print/2742.%20%EA%B8%B0%EC%B0%8DN

 

GitHub - Anchangun/BackJoon

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

github.com

반응형

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

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