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