Sapphire


私信TA

用户名:1368205885

访问量:4719

签 名:

无限进步!

等  级
排  名 740
经  验 3830
参赛次数 0
文章发表 16
年  龄 18
在职情况 学生
学  校
专  业 软件工程

  自我简介:

解题思路:
嗯······由于我出错了我就不解释了,但确确实实满足题目的所有条件和样例,有大佬可以指点一下迷津吗?


参考代码:

#include<stdio.h>
#include<string.h>
int main()
{
    int i;
    char s[80];
    char end[12]={"End of file"};
    while(strcmp(gets(s),end)!=0)
    {
        for(i=0;i<strlen(s);i++)
        {
            if(s[i]!=' ')
            {
                printf("%c",s[i]);
            }
        }
        printf("\n");
    }
    return 0;
}


 

0.0分

7 人评分

  评论区

char end[12]={"End of file"};
请问这个的作用是什么
2023-03-23 22:24:53
end of file 不是指字符串,在键盘上输入的时候是ctrl+z再按enter
2022-07-04 16:57:42
  • «
  • 1
  • »