标题:下面的代码有什么问题啊?小白求助
只看楼主
bb102
Rank: 1
等 级:新手上路
帖 子:83
专家分:3
注 册:2016-10-22
结帖率:88.89%
已结贴  问题点数:10 回复次数:8 
下面的代码有什么问题啊?小白求助
#include<stdio.h>
#include<stdlib.h>
void main()
{
    FILE *in,*out;
    char ch,infile[10],outfile[10];
    printf("enter the name of the fileread:");
    scanf("%s",infile);
    printf("enter the name of the filewrite:");
    scanf("%s",outfile);
    if(in=fopen(infile,"r")==NULL)
    {
        printf("can not open the file!\n");
        exit(0);
    }
    if(out=fopen(outfile,"w")==NULL)
    {
        printf("can not open the file!\n");
        exit(0);
    }
    while(!feof(in))
    {
        ch=fgetc(in);
        fputc(ch,out);
        putchar(ch);
    }
    putchar(10);
    fclose(in);
    fclose(out);
}
搜索更多相关主题的帖子: include file 
2016-12-29 20:36
wp231957
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:神界
等 级:版主
威 望:422
帖 子:13681
专家分:53296
注 册:2012-10-18
得分:1 
你敢再说的详细一些吗

DO IT YOURSELF !
2016-12-29 20:37
bb102
Rank: 1
等 级:新手上路
帖 子:83
专家分:3
注 册:2016-10-22
得分:0 
回复 2楼 wp231957
就是C语言关于读取文件的问题
2016-12-29 20:38
wp231957
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:神界
等 级:版主
威 望:422
帖 子:13681
专家分:53296
注 册:2012-10-18
得分:1 
你想干啥(期望值) 而实际结果是?

DO IT YOURSELF !
2016-12-29 20:40
bb102
Rank: 1
等 级:新手上路
帖 子:83
专家分:3
注 册:2016-10-22
得分:0 
回复 4楼 wp231957
就是读取一个文件,然后读取它的内容并将内容写入另一个文件
2016-12-29 20:43
倾听心跳
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:39
专家分:153
注 册:2016-6-22
得分:1 
程序代码:
#include<stdio.h>
#include<stdlib.h>
void main()
{
    FILE *in,*out;
    char ch,infile[10],outfile[10];
    printf("enter the name of the fileread:");
    scanf("%s",infile);
    printf("enter the name of the filewrite:");
    scanf("%s",outfile);
    if(in==fopen(infile,"r")==NULL)
    {
        printf("can not open the file!\n");
        exit(0);
    }
    if(out==fopen(outfile,"w")==NULL)
    {
        printf("can not open the file!\n");
        exit(0);
    }
    while(!feof(in))
    {
        ch=fgetc(in);
        fputc(ch,out);
        putchar(ch);
    }
    putchar(10);
    fclose(in);
    fclose(out);
}

= 是赋值,= =这是判断相等
2016-12-29 20:46
bb102
Rank: 1
等 级:新手上路
帖 子:83
专家分:3
注 册:2016-10-22
得分:0 
回复 6楼 倾听心跳
还是不对啊,我是用out和in这两个指针变量指文件里面的内容
2016-12-29 20:49
炎天
Rank: 13Rank: 13Rank: 13Rank: 13
来 自:桃花岛
等 级:贵宾
威 望:29
帖 子:1218
专家分:4986
注 册:2016-9-15
得分:7 
     if((in =fopen(infile,"r"))==NULL)      //加小括号
     {
         printf("can not open the file!\n");
         exit(0);
     }
     if((out=fopen(outfile,"w"))==NULL)     //加小括号
     {
         printf("can not open the file!\n");
         exit(0);
     }

早知做人那么辛苦!  当初不应该下凡
2016-12-29 20:55
wp231957
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:神界
等 级:版主
威 望:422
帖 子:13681
专家分:53296
注 册:2012-10-18
得分:0 
给你一个能运行的代码吧(精简之后的,你的原码逻辑有问题 复制后文件与原始文件会有一个byte的差异)
程序代码:
#include<stdio.h>
#include<stdlib.h>

void main()
{
    FILE *in,*out;
    char ch;
    in=fopen("1.txt","r");
    out=fopen("2.txt","w");
    ch=fgetc(in);
    while(!feof(in))
    {
        fputc(ch,out);
        ch=fgetc(in);
    }
    fclose(in);
    fclose(out);
}





DO IT YOURSELF !
2016-12-29 21:02



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




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

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