http://www.jungol.co.kr/bbs/board.php?bo_table=pbank&wr_id=235&sca=10e0
//문자열1 - 자가진단6
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main()
{
int i,b,c;
char a;
while(1){
scanf(" %c",&a);
if(isalpha(a))
{
printf("%c \n",a);
}
else if('0'<=a&&a<='9')
{
printf("%d \n",a);
}
else
{
return 0;
}
}
return 0;
}
'정보올림피아드-KOI > 기초 문법 문제' 카테고리의 다른 글
599 : 문자열1 - 자가진단7 (0) | 2020.04.04 |
---|---|
600 : 문자열1 - 자가진단8 (0) | 2020.04.04 |
608 : 문자열2 - 자가진단7 (0) | 2020.03.14 |
609 : 문자열2 - 자가진단8 (0) | 2020.03.14 |
610 : 문자열2 - 자가진단9 (0) | 2020.03.14 |