C++学习笔记(1):常量、整型和实型、字符和字符串
作者:互联网
文章目录
一、常量define和const
#include <iostream>
using namespace std;
// 常量:用于记录程序中不可更改的数据
//1 #define 宏常量 常量值
#define Day 7
int main()
{
// Day = 8;//会报错
//2 const修饰变量
const int month = 12;
return 0;
}
二、整型(short、int、long、long long)和实型(float、double)
整型:用于表示整数
#include <iostream>
using namespace std;
int main()
{
//整型:1字节=8位
//1 short 2字节(-2^15-2^15-1)即-32768-32767
short num1 = 32769;
cout<<"short num1="<<num1<<endl;//-32767 超出范围
//2 int 4字节 (-2^31-2^31-1)
//3 long win32 4字节 ;win64 8字节;(-2^31-2^31-1)
//4 long long 8字节(-2^63-2^63-1)
return 0;
}
实型:用于表示小数
#include <iostream>
using namespace std;
int main()
{
// 1 单精度 float
float f1 = 3.1415926f;
// 默认输出6位有效数字
cout << "f1 = "<<f1<<endl;//f1 = 3.14159
cout << "f1 size= "<<sizeof(f1)<<endl;//f1 size= 4
// 2 双精度 double
double d1 = 3.1415926;
// 默认输出6位有效数字
cout << "d1 = "<<d1<<endl;//d1 = 3.14159
cout << "d1 size= "<<sizeof(d1)<<endl;//d1 size= 8
return 0;
}
三、字符和字符串
#include <iostream>
//需要引用<string>
#include <string>
using namespace std;
int main()
{
// 字符型变量:用于显示单个字符,占用一个字节,只能用单引号
char ch = 'a';
cout << "ch = "<<ch<<endl;//ch = a
cout << "Ascall(a) = "<<int(ch)<<endl;//Ascall(a) = 97
char ch1 = 'A';
cout << "Ascall(A) = "<<int(ch1)<<endl;//Ascall(a) = 65
// 字符串变量
string str1 = "Hello world!";
cout <<str1<<endl;//Hello world!
return 0;
}
标签:常量,int,long,实型,整型,include,C++ 来源: https://blog.csdn.net/Hankerchen/article/details/121314476