题解 1113: C语言考试练习题_保留字母

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

猜猜这是啥?

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {  char str[100],str2[100];  gets(str);  int i,s=0;……

保留字母 ,双下标法

摘要:参考代码:#include<stdio.h> int main() {     char str[81];     gets(str);     int i=0,k=0;     whil……