#include <iostream>
using namespace std;
int main()//main为一个程序的入口,每个程序都必须仅有一个
{
cout<<"hello world"<<endl;
}
//#输出结果为
//单行注释的符号
/*
多行注释的符号
*/
//变量创建的语法:数据类型 变量名=变量初始值; 如: int a=10;
/*C++常量的两种方式:(1)#define宏常量: #define 常量名 常量值(通常在文件上方的定义,表示一个常量),如:#define week_day 7;(2)const修饰的变量:const 数据类型 常量名=常量值(通常在变量定义前加关键词const,修饰该变量为常量,不可修改),如const int month=12;*/
#include <iostream>
using namespace std;
#define week_day 7
int main()
{
cout<<"一周有:"<<week_day<<"天"<<endl;
return 0;
}
#include <iostream>
using namespace std;
int main()
{
const int week_day=7;
cout<<"一周有:"<<week_day<<"天"<<endl;
return 0;
}