标签:des style blog io color ar sp for div
Sample Input
1 #include <stdio.h> 2 #include <string.h> 3 4 int main(){ 5 int T; 6 int n; 7 char s[81]; 8 int length; 9 int time; 10 int i; 11 12 time=1; 13 14 scanf("%d",&T); 15 16 while(T--){ 17 scanf("%d%s",&n,s); 18 length=strlen(s); 19 20 printf("%d ",time); 21 time++; 22 23 for(i=0;i<length;i++){ 24 if(i+1!=n) 25 printf("%c",s[i]); 26 } 27 28 printf("\n"); 29 30 } 31 32 return 0; 33 }
标签:des style blog io color ar sp for div
原文地址:http://www.cnblogs.com/zqxLonely/p/4087004.html