도도도 도시라~ 글자를 찾는 모습이 마치., 젓가락 행진곡 같지 않나요? ㅋㅋㅋ
(도도도 도레미~)
#include <stdio.h>
#include <conio.h>
int main (void)
{
char input_char[1000];
int i_temp=NULL;
int repeat=NULL;
scanf("%d",&repeat);
if(repeat<1 || repeat>10){printf("Only input range '1-10'\n");return 0;}
for(int k=0; k<repeat; k++)
{
scanf("%s",&input_char);
for(int i=0; i<1000; i++)
{
if(input_char[i]==NULL)
{
i_temp=i;
break;
}
}
for(int j=0; j<i_temp; j++)
{
if(input_char[j]>='A' && input_char[j]<='Z'){continue;}
else{printf("Only input 'A-Z' NOT '%c'! \n",input_char[j]);return 0;}
}
printf("%c%c\n",input_char[0],input_char[i_temp-1]);
}
return 0;
}
'4_ 고소한 알고리즘' 카테고리의 다른 글
C- ACM - 지뢰찾기 (4) | 2010.06.23 |
---|---|
C- ACM - 수 뒤집기 (0) | 2010.06.12 |
C- ACM - 소수판정 (0) | 2010.06.09 |
C- ACM - Coin (0) | 2010.06.08 |
C- ACM - 더하기 (0) | 2010.06.07 |