Q

codeup 1076

codeup 1076번 문제

codeup 1076번 문제


C code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

int main(void)
{
char c = 'a', input;

scanf("%c", &input);

do printf("%c ", c++);
while(c < input+1);

return 0;
}