| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 675 人关注过本帖
标题:读取文本文件 遇到的问题
只看楼主 加入收藏
jhkyy
Rank: 1
等 级:新手上路
帖 子:27
专家分:4
注 册:2009-5-1
结帖率:100%
收藏
已结贴  问题点数:5 回复次数:3 
读取文本文件 遇到的问题
#include <iostream>
#include <fstream>          // file I/O suppport
#include <cstdlib>          // support for exit()
const int SIZE = 60;
int main()
{
    using namespace std;
    char filename[SIZE];
    ifstream inFile;        // object for handling file input

    cout << "Enter name of data file: ";
    cin.getline(filename, SIZE);
    inFile.open(filename);  // associate inFile with a file
    if (!inFile.is_open())  // failed to open file

    {
        cout << "Could not open the file " << filename << endl;
        cout << "Program terminating.\n";
        exit(EXIT_FAILURE);
    }
    double value;
    double sum = 0.0;
    int count = 0;          // number of items read

    inFile >> value;        // get first value
    while (inFile.good())   // while input good and not at EOF
    {
        ++count;            // one more item read
        sum += value;       // calculate running total
        inFile >> value;    // get next value
    }
    if (inFile.eof())
        cout << "End of file reached.\n";
    else if (inFile.fail())
        cout << "Input terminated by data mismatch.\n";
    else
        cout << "Input terminated for unknown reason.\n";
    if (count == 0)
        cout << "No data processed.\n";
    else
    {
        cout << "Items read: " << count << endl;
        cout << "Sum: " << sum << endl;
        cout << "Average: " << sum / count << endl;
    }
    inFile.close();         // finished with the file
    return 0;
}
 error C2377: “SIZE”: 重定义;typedef 不能由任何其他符号重载
用的vs 2008 编译器  不知道是编译器还是 size的用法错误
搜索更多相关主题的帖子: 文本文件 
2010-05-14 16:03
ltyjyufo
Rank: 9Rank: 9Rank: 9
来 自:未来
等 级:蜘蛛侠
威 望:2
帖 子:353
专家分:1166
注 册:2009-10-25
收藏
得分:2 
  没错啊,怎么我编译不提示???   是在VC6.0下

翱翔天空的雄鹰固然令人羡慕,却容易被禁锢于牢笼之中,只有那夜色中的蝙蝠才是真正自由的飞翔者....
2010-05-14 20:07
lscalin
Rank: 6Rank: 6
来 自:周总理故乡
等 级:侠之大者
威 望:1
帖 子:91
专家分:405
注 册:2010-5-10
收藏
得分:3 
2008未发现你说的问题

灵感不是曹操,说来就来。
2010-05-14 20:11
jhkyy
Rank: 1
等 级:新手上路
帖 子:27
专家分:4
注 册:2009-5-1
收藏
得分:0 
找到问题了  是因为加了一个文件
谢谢!!!!
2010-05-14 22:47
快速回复:读取文本文件 遇到的问题
数据加载中...
 
   



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

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