C++學習筆記(2)
在我們的生活中,會接觸到各種數(shù)據。我們今天會學習各種數(shù)據結構。有幫助請給個三連吧!
一 整型
#include<iostream>
using namespace std;
int main()
{
int a=0;
short b=0;
long c=0;
long long d=0;
}
以上是一些整型數(shù)據,但它們的表達范圍不一樣。
short意思是短,范圍也是最小的-2^15至2^15-1.
int和long范圍要大一些,從-2^31至2^31-1.
long long是超長整型,范圍是-2^63至2^63-1.
二 浮點型
#include<iostream>
using namespace std;
int main()
{
float a=0;
double b=0;
long double c=0;
}
以上是一些浮點型數(shù)據
float的范圍是-3.4^38至3.4^38,有效數(shù)字7位
double的范圍是-1.7^308至1.7^308,有效數(shù)字16位
long double的范圍是-1.7^308至1.7^308,有效數(shù)字16位
三 字符和字符串
#include<iostream>
using namespace std;
int main()
{
char a='a';
string b="Hello world!";
cout<<a<<endl;
cout<<b<<endl;
for(int i=0;i<b.length();i++)
{
cout<<b[i];
}
}
字符是表示單個且只能單個字符的數(shù)據結構,而字符串可以看作一個字符數(shù)組。
以下看出它們的本質。

而其他的數(shù)組就不能直接cout輸出了
四 數(shù)組


可見在不在主函數(shù)中編寫的數(shù)組的差別巨大,所以盡量在主函數(shù)外定義變量和數(shù)組。


數(shù)組也不能直接用cin輸入,cout輸出。
彩蛋:之前我說return 0;表示成功其實也可以不寫。
????????????變量定義在主函數(shù)外也會初始化為0
感謝觀看,記得點贊~