标题:C语言中有没有像c++中的ignore函数可以删除流中的\n符号
取消只看楼主
叶纤
Rank: 8Rank: 8
等 级:禁止访问
威 望:1
帖 子:658
专家分:848
注 册:2019-11-22
结帖率:100%
已结贴  问题点数:20 回复次数:1 
C语言中有没有像c++中的ignore函数可以删除流中的\n符号
程序代码:
#include <stdio.h>
#include <stdlib.h>
int main(void)
{int n=0;int count=0;int i=0;
      char a[50];char b[50];
      scanf("%d",n);   //不接受n是我写错了吗?居然不接受n,不接受a还可以接受,居然不接受n
      scanf("%s",a);  //输入dhggh是可以输出的

      count=strlen(a);
       for (int i=0;i<count;++i){
       b[i]=(char)(a[i]+n);
       }
      printf("%s",b);
}

搜索更多相关主题的帖子: int char c++ 符号 count 
2020-03-12 17:57
叶纤
Rank: 8Rank: 8
等 级:禁止访问
威 望:1
帖 子:658
专家分:848
注 册:2019-11-22
得分:0 
程序代码:
#include <stdio.h>
#include <stdlib.h>
int main(void)
{int n=0;int count=0;int i=0;
      char a[50];char b[50];
      scanf("%d",&n);   //可以啦
      scanf("%s",a);  
      count=strlen(a);
       for (int i=0;i<count;++i){
       b[i]=(char)(a[i]+n);
       }
      printf("%s",b);
}





把学习时间浪费在混坛上是傻瓜行为,更何况自己的水平连一两都没到。
2020-03-12 18:24



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-499730-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.687701 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved