1个回答
展开全部
假定你的文字是指英文字母,则用条件:
if ( (c>='a' && c <='z') || (c>='A' && c <='Z')) fprintf(fout,"%c",c);
如果是指所有内容,则去掉条件,复制所有内容
如果是指其它,自己写出条件。
================
#include <stdio.h>
#include <stdlib.h>
main()
{
FILE *fin, *fout;
static char c;
fin=fopen("file1.dat","r");
fout=fopen("file2.dat","w");
while(1){
if ( fscanf(fin,"%c",&c)==EOF) break;
if ( (c>='a' && c <='z') || (c>='A' && c <='Z')) fprintf(fout,"%c",c);
}
fclose(fin);
fclose(fout);
return 0;
}
if ( (c>='a' && c <='z') || (c>='A' && c <='Z')) fprintf(fout,"%c",c);
如果是指所有内容,则去掉条件,复制所有内容
如果是指其它,自己写出条件。
================
#include <stdio.h>
#include <stdlib.h>
main()
{
FILE *fin, *fout;
static char c;
fin=fopen("file1.dat","r");
fout=fopen("file2.dat","w");
while(1){
if ( fscanf(fin,"%c",&c)==EOF) break;
if ( (c>='a' && c <='z') || (c>='A' && c <='Z')) fprintf(fout,"%c",c);
}
fclose(fin);
fclose(fout);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询