teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1076)

2019-06-20
teddy8

문제

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


소스코드

// 문자 1개 입력받아 알파벳 출력하기
// input : f
// output : a b c d e f
#include <iostream>

using namespace std;

int main()
{
	char c;
	cin >> c;

	for (int i = 'a'; i <= c; i++)
		cout << (char)i << endl;

	return 0;
}


Comments

Content