主题:C++初学者求助
//myfirst.cpp--displays a message
#include<iostream> //a preprocessor directive
int main() //function header
{ //start of function body
using namespace std; //make definitions visible
cout<<"come up and c++ me some time."; //message
cout<<endl; //strat a new line
cout<<"You won-t regret it!"<<endl;
retrun 0; //terminate main()
} //end of function body
我是刚学习C++使用的编译器是Visual C++在做一个输出显示习题时,在生成obj时有一个错误需要怎样解决。我的QQ邮箱是474459053@qq.com.
谢谢。
#include<iostream> //a preprocessor directive
int main() //function header
{ //start of function body
using namespace std; //make definitions visible
cout<<"come up and c++ me some time."; //message
cout<<endl; //strat a new line
cout<<"You won-t regret it!"<<endl;
retrun 0; //terminate main()
} //end of function body
我是刚学习C++使用的编译器是Visual C++在做一个输出显示习题时,在生成obj时有一个错误需要怎样解决。我的QQ邮箱是474459053@qq.com.
谢谢。