标题:文件写入错误
只看楼主
ybyc9999
Rank: 1
等 级:新手上路
帖 子:55
专家分:0
注 册:2015-1-24
结帖率:90%
已结贴  问题点数:20 回复次数:6 
文件写入错误
#include <stdio.h>
#include <stdlib.h>
#include <iostream>

int main(void)
{
    FILE *out;
    char ch,outfile[10];
    printf("output outfile name: ");
    scanf("%s",outfile);
   
    if( (out=fopen(outfile,"w"))==NULL )
    {
        printf("cannot open the outfile.\n");
        exit(0);
    }
    while(!feof(out))
    {
         fputs("hello,world.",out);            
    }
    putchar('\n');
    fclose(out);
   
    system("pause");
    return 0;
}
大家看看代码写的有问题吗
搜索更多相关主题的帖子: include system return cannot hello 
2015-02-11 11:51
xufan
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:6
帖 子:232
专家分:804
注 册:2008-10-20
得分:4 
你的问题是什么呢?

~~~~~~我的明天我知道~~~。
2015-02-11 13:21
ybyc9999
Rank: 1
等 级:新手上路
帖 子:55
专家分:0
注 册:2015-1-24
得分:0 
回复 2楼 xufan
我只想输入指定的长度的,这个程序好像没法控制
2015-02-11 13:45
lwei
Rank: 5Rank: 5
等 级:职业侠客
威 望:3
帖 子:197
专家分:369
注 册:2005-5-4
得分:4 
会不断的向文件中写东东。

2015-02-11 14:51
TonyDeng
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:贵宾
威 望:304
帖 子:25859
专家分:48889
注 册:2011-6-22
得分:4 
往裏寫入你用feof()判斷幹什麽?

授人以渔,不授人以鱼。
2015-02-11 21:43
猫林heart
Rank: 5Rank: 5
等 级:职业侠客
威 望:1
帖 子:60
专家分:390
注 册:2014-9-26
得分:4 
还没学到文件,先看看。
2015-02-12 19:30
zxk112
Rank: 2
等 级:论坛游民
帖 子:11
专家分:26
注 册:2015-2-13
得分:4 
#include <stdio.h>
#include <stdlib.h>
#include <iostream>

int main(void)
{
    FILE *out;
    char ch,outfile[10];
    printf("output outfile name: ");
    scanf("%s",outfile);
   
    if( (out=fopen(outfile,"w"))==NULL )   //2、但是你把OUT这个文件定义为可写。。
    {
        printf("cannot open the outfile.\n");
        exit(0);
    }
    while(!feof(out))//  1、你的循环输出的条件是 OUT这个文件没有读到EOF字符。。
    {
         fputs("hello,world.",out);          //3、你输出的内容中根本没有 eof这个字符,你让程序怎么终止????  
    }
    putchar('\n');
    fclose(out);
   
    system("pause");
    return 0;
}

4、既然判断要不要继续写东西到文件中。。。不应该已EOF(文件末尾)为标志。因为out这个文件根本不存在。你让程序上哪弄eof终止字符??  所以你判断的条件应该为:
写入文件的次数。。。或者当按下某个键的时候停止写入。。。

不要以EOF为标志~!!
2015-02-14 09:07



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




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

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