标签:next main 元素 命名 组合 size color 必须 family
//C++的第一个程序,打印hello world #include <iostream> //头文件 意思:stdio in out stream using namespace std; int main() // C++中必须写int main() { // 输出 ----- 对代码的功能做描述,意义,对于程序员来说 // C++ 注释符号 ---- //或者/* */ cout << "hello world!" << endl; //输出 cout << "你好,C++,我来了" << endl; //cout是个对象,不是关键字,也不是输出 cin.get(); //要让窗口一直打开 return 0; //必须写上return 0 }
int main() { statements return 0; }
using namespace std;
cout << "Come up and C++ me some time.";
#include <iostream> int main() { using namespace std; cout << "come up and c++ me some time."; cout <<endl; cout <<"you are regreat it!" <<endl; return 0; }
标签:next main 元素 命名 组合 size color 必须 family
原文地址:https://www.cnblogs.com/1Q84zj/p/10054055.html