01 循序渐进-hello world

01 基本框架

#include<iostream>
using namespace std;
int main()
{
   system("pause");
    
   return 0;
}

02 注释(养成写清注释的习惯)

(a)单行注释——//

(b)多行注释——/*     */

03 注意事项

(a)每一个工程中有且仅有一个main函数(程序入口),不能重名,其它可以命名为main1等;

(b)中间语句,每一句后有分号。

posted @ 2021-09-28 11:15  下山道士又出家  阅读(26)  评论(0编辑  收藏  举报