teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1077)

2019-06-20
teddy8

문제

URL : https://codeup.kr/problemsetsol.php?psid=23


소스코드

// 정수 1개 입력받아 그 수까지 출력하기
// input  : 4
// output : 0
//			1
//			2
//			3
//			4
#include <iostream>

using namespace std;

int main()
{
	int n;
	cin >> n;

	for (int i = 0; i <= n; i++)
		cout << (char)i << endl;

	return 0;
}


Comments

Content