摘要: 1 #include 2 3 void main() 4 { 5 setvbuf(stdout,NULL,_IONBF,0); 6 char str[80],ch; 7 int i,j; 8 9 printf("Input the string:\n");10 gets(str);11 printf("Input the char to be deleted:");12 scanf("%c",&ch);13 14 j=0;15 for(i=0;str[i]!='\0';i++)16 if(str[i]... 阅读全文
posted @ 2013-09-27 15:52 Andy Cheung 阅读(1455) 评论(0) 推荐(0) 编辑