标签:style blog io color ar os sp for 数据
1 #include <stdio.h> 2 #include <string.h> 3 #include <ctype.h> 4 5 int main(){ 6 char s[50]; 7 int T; 8 int length; 9 int i; 10 11 scanf("%d",&T); 12 getchar(); 13 14 while(T--){ 15 gets(s); 16 length=strlen(s); 17 18 for(i=length-1;i>=0;i--){ 19 if(isalpha(s[i])) 20 printf("%c",s[i]); 21 } 22 23 printf("\n"); 24 } 25 return 0; 26 }
标签:style blog io color ar os sp for 数据
原文地址:http://www.cnblogs.com/zqxLonely/p/4098206.html