标题:用getc 和putc 复制一个程序代码到另一个文本中时怎么去掉//后面的部分
取消只看楼主
清风幽然
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2019-9-25
结帖率:66.67%
已结贴  问题点数:20 回复次数:1 
用getc 和putc 复制一个程序代码到另一个文本中时怎么去掉//后面的部分
题目要求只复制代码,但要去掉 //后面的部分,这是题目:
Write a program that reads a file containing a C program and outputs the program
to another file with all the // comments removed.


这是我写的,但不知道要怎么跳过//后面到另一行
#include <stdio.h>
int main (){
 char c;
 FILE *in= fopen ("a.txt","r");
 FILE *out =fopen ("b.txt","w");
 while ((c=getc(in)) !=EOF )
 if (c== '/') "\n";
  putc(c,out);
  fclose(in); fclose(out);  }


比如复制
aaaaa //bbbbb
ccccc
到另一个txt文本里,只保留
aaaaa
ccccc




[此贴子已经被作者于2019-10-9 21:13编辑过]

搜索更多相关主题的帖子: 复制 out file 文本 代码 
2019-10-09 21:11
清风幽然
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2019-9-25
得分:0 
回复 2楼 rjsp
感谢解答!
2019-10-10 16:53



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




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

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