标题:一个简单 的错误??
取消只看楼主
corrupt
Rank: 2
等 级:新手上路
威 望:3
帖 子:535
专家分:0
注 册:2004-9-29
 问题点数:0 回复次数:1 
一个简单 的错误??

#include<iostream.h> #include<fstream.h> #include<stdlib.h>

void main() { ifstream infile ("data.txt",ios::in|ios::nocreate); if(!infile) { cout<<"can not open!"<<endl; exit(1); } float sum=0,temp; int cout=0; while(infile>>temp) { sum+=temp; cout++; } cout<<"The average is"<<sum/cout; ///////--------------------这里 错!! infile.close(); }

为什么 编译 时老是 出现 这个错啊??

E:\程序\测试.cpp(20) : error C2297: '<<' : illegal, right operand has type 'char [15]' Error executing cl.exe.

搜索更多相关主题的帖子: average include 
2004-10-10 22:51
corrupt
Rank: 2
等 级:新手上路
威 望:3
帖 子:535
专家分:0
注 册:2004-9-29
得分:0 

哦!!原来 是我定义的cout 和输出的 cout

同名了!!

太谢谢 斑竹了!!


2004-10-11 15:07



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




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

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