#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
int main()
{
system("pause");
return 0;
}
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
int main()
{
cout << "please input" << endl; //cout<<"输出内容"<<endl;
system("pause");
return 0;
}
运行结果:
please input
1、单行注释://
2、多行注释:/**/
1、变量存在的意义:方便我们管理内存空间
2、变量创建的语法:数据类型 变量名 = 变量初始值;
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
int main()
{
int a = 10;
cout << "a = " << a << endl; //输出:a = 10
system("pause");
return 0;
}
运行结果:?
a = 10
1、#define宏常量:#define 常量名 常量值
?通常在文件上方定义,表示一个常量
2、const修饰的变量const 数据类型 常量名 = 常量值
通常在变量定义前加关键字const,修饰该变量为常量,不可修改
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
#define Day 7 //宏常量
int main()
{
//Day = 14; //宏常量值不能进行修改
cout << "一周总共有:" << Day << "天" << endl;
//2、const修饰的变量,也称为常量,值不可修改
const int month = 12;
//month = 24; //错误,const修饰的变量也称为常量
cout << "一年总共有:" << month << "个月份" << endl;
system("pause");
return 0;
}
运行结果:
一周总共有:7天
一年总共有:12个月份
c++中预先保留的单词,不能用来定义变量
1、标识符不能是关键字
2、标识符只能由字母、数字、下划线组成
3、第一个字符必须为字母或下划线
4、标识符中字母区分大小写
5、见名知意
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
int main()
{
int 123abc = 20; //错误,标识符开头不能是数字
int aaa = 100;
cout << AAA << endl; //错误,区分大小写,不能打印
system("pause");
return 0;
}