C++问题,在V2013上return 0;会报错
:sad求解什么情况#include<iostream>#include<fstream>
using namespace std;
void main()
{
ifstream in("test.txt");
if (!in)
{
cerr << "打开文件失败" << endl;
}
char x;
while (in >> x);
{
cout << x;
return 0;
}
cout << endl;
in.close();
return 0;
} 看不懂,帮忙顶一下! 改成int main() 谢谢大神指点 无语了 return 返回一个值,但你的Main却使用void修饰,void表示无返回值。。这就矛盾了 哎 很基本的问题
页:
[1]