C ++ 基本語法
阿新 • • 發佈:2020-11-13
#include<iostream> using namespace std; int main() { cout << "HelloWorld" << endl; system("pause"); }
單行註釋 //
多行註釋 /* 內容 */
資料型別 變數名稱 = 初始值 ;
// 單行註釋 /* 1. 多行註釋 2.... */ int a = 10;
用於記錄程式中不可更改的資料,常量一旦定義不可修改
#define 巨集常量
const 修飾的變數
#include<iostream> using namespace std; #define DAY 7 int main() { cout << "一週有" << DAY << "天" <<endl; const int month = 12; cout << "一年有" << month << "月" << endl; system("pause"); }
- 識別符號不能是關鍵字
- 識別符號只能是字母、數字、下劃線
- 第一個字元必須是字母或者下劃線
- 識別符號區分大小寫