[求助]编译出错怎么办?(程序似乎没错但编译不出来,我写的别的程序也都不行。请大
#include<iostream>
using namespace std;
main()
{
cout<<"Hello world !"<<endl;
system("PAUSE");
return 0;
}
#include<iostream>
using namespace std;
main()
{
cout<<"Hello world !"<<endl;
system("PAUSE");
return 0;
}
希望大家给予指导!
我刚开始学C++,有许多问题。特别是Microsoft visual c++ 6.0 的使用,总是出错。似乎只有第一次用的时候编译成功了,现在总是错的。
请大家给予指导,必将感激不尽!!
#include<iostream>
using namespace std;
main() //注意int main()
{
cout<<"Hello world !"<<endl;
system("PAUSE");
return 0;
}