문제
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;
}