标签:
#include <iostream>//using namespace std;//if you use the above line, you may write std::cout as coutint main(){ std::cout << "hellow world! \n"; return 0;}
#include <iostream>
//using namespace std;
//if you use the above line, you may write std::cout as cout
int main()
{
std::cout << "hellow world! \n";
return 0;
}
C++ programming
原文地址:http://www.cnblogs.com/docnan/p/5631794.html