原创 #define與const常量

const類型寫法 const int a=5; //用const聲明的常變量,值始終爲5 const float b=3*1.75; 關於const,#define需注意 const 聲明常量時,定義常量使必須同時初始化,其