문제
자연수 N이 주어졌을 때, N부터 1까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오.
입력
첫째 줄에 100,000보다 작거나 같은 자연수 N이 주어진다.
출력
첫째 줄부터 N번째 줄 까지 차례대로 출력한다.
코드
#include <iostream>
using namespace std;
int main()
{
// :: 입력
int count;
cin >> count;
// :: 연산
string textContainer = "";
for(int index = count; index >= 1; index--) {
// :: 연산
textContainer += to_string(index);
// :: 개행 확인
if(index != 1) textContainer += "\n";
}
// :: 출력
cout << textContainer;
return 0;
}
참고
'C++ > Baekjoon' 카테고리의 다른 글
백준 11022: A+B - 8 (0) | 2022.07.18 |
---|---|
백준 11021: A+B - 7 (0) | 2022.07.18 |
백준 2741: N 찍기 (0) | 2022.07.18 |
백준 15552: 빠른 A+B (0) | 2022.07.18 |
백준 8393: 합 (0) | 2022.07.18 |