4_ 고소한 알고리즘
C- ACM - 문자열
준환이형님_
2010. 6. 8. 22:27
도도도 도시라~ 글자를 찾는 모습이 마치., 젓가락 행진곡 같지 않나요? ㅋㅋㅋ
(도도도 도레미~)
#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;
}