<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
C++不像python,建立變數的時候必須指定型別,這樣才能給變數分配一個合適的記憶體空間。
作用:整型變數表示的是整型型別的資料
整型的資料型別有4種(最常用的是int),其區別在於所佔記憶體空間不同:
#include<iostream> using namespace std; int main() { //整型 //1.短整型 short num1 = 32768; //2.整型 int num2 = 10; //3.長整型 long num3 = 10; //4.長長整型 long long num4 = 10; cout << "num1=" << num1 << endl; cout << "num2=" << num2 << endl; cout << "num3=" << num3 << endl; cout << "num4=" << num4 << endl; system("pause"); return 0; }
因為短整型取值範圍為-32768-32767,所以注意數值溢位,當數值溢位時,取二補數。
當如下定義時:
short num1 = 32768
輸出為
num1=-32768
作用:利用siezeof關鍵字可以統計資料型別所佔記憶體大小語法:
sizeof{資料型別/變數}
#include<iostream> using namespace std; int main() { //利用sizeof求出資料型別佔用大小 short num1 = 10; int num2 = 10; long num3 = 10; long long num4 = 10; cout << "short佔用記憶體空間為:" << sizeof(short) << endl; cout << "num1佔用記憶體空間為:" << sizeof(num1) << endl; cout << "int佔用記憶體空間為:" << sizeof(int) << endl; cout << "num2佔用記憶體空間為:" << sizeof(num2) << endl; cout << "long佔用記憶體空間為:" << sizeof(long) << endl; cout << "num3佔用記憶體空間為:" << sizeof(num3) << endl; cout << "long long佔用記憶體空間為:" << sizeof(long long) << endl; cout << "num4佔用記憶體空間為:" << sizeof(num4) << endl; system("pause"); return 0; }
作用:用於表示小數
浮點型變數分為兩種:
在使用時,使用方法通常為
float f1 = 3.14f
如果不加f,預設是double型變數:
#include<iostream> using namespace std; int main() { //預設情況下,輸出一個小數,會顯示最多6位有效數位 //1.單精度 float f1 = 3.1415926f; cout << "f1=" << f1 << endl; //2.雙精度 double d1 = 3.1415926; cout << "d1=" << d1 << endl; //佔用記憶體檢視 cout << "float佔用記憶體空間為:" << sizeof(float) << endl; cout << "double佔用記憶體空間為:" << sizeof(double) << endl; //科學計數法 float f2 = 3e2f; cout << "f2=" << f2 << endl; float f3 = 3e-2f; cout << "f3=" << f3 << endl; system("pause"); return 0; }
作用:字元變數用於顯示單個字元
語法:char ch=‘a’;
1.C和C++中字元型變數只佔用1個位元組。
2.字元型變數並不是把字元本身放到記憶體中儲存,而是將對應的ASCII編碼放入到儲存單元。
注:用單引號不要用雙引號;單引號內只能有一個字元,不可以是字串。
#include<iostream> using namespace std; int main() { //字元型變數建立方式 char ch = 'a'; cout << ch << endl; //字元型變數所佔記憶體大小 cout << "char字元型變數所佔記憶體:" << sizeof(char) << endl; //字元型變數常見錯誤 // char ch2="b"; // char ch2='abc'; //字元型變數對應ASCII編碼 cout <<"字元A的ASCII碼值為:"<<(int)'A' << endl; cout << "變數ch的ASCII碼值為:" << (int)ch << endl; system("pause"); return 0; }
作用:用於表示一些不能顯示出來的ASCII字元
常用的就下面這些,其餘可自行百度
語法:使用cout時直接加在字串中。
#include<iostream> using namespace std; int main() { //換行符 n cout << "hello worldn"<<endl; //反斜槓 cout << "\" << endl; /*水平製表符 t 使用空格補齊位置,使得所佔位置為8的倍數 輸入正好為8個時,輸出會多8個空格 */ cout << "aaaattheworld" << endl; cout << "aaattheworld" << endl; cout << "aaaaaaaattheworld" << endl; cout << "aaaaaaaaattheworld" << endl; cout << "aaaaaaaaaaattheworld" << endl; system("pause"); return 0; }
作用:用於表示一串字元。
兩種風格
1.C風格的字串:char 變數名[ ] = “字串值”; ——注意加[ ],不加[ ]的時候預設的是字元。
2.C++風格字串:string 變數名 = “字串值”;——注意加標頭檔案#include
#include<iostream>#include<string>using namespace std;int main(){//1.C風格字串,注意加中括號[]char str[] = "hello world";cout << str << endl;//2.C++風格字串,注意加標頭檔案#include<string>string str2 = "hello world";cout << str2 << endl;system("pause");return 0;}#include<iostream> #include<string> using namespace std; int main() { //1.C風格字串,注意加中括號[] char str[] = "hello world"; cout << str << endl; //2.C++風格字串,注意加標頭檔案#include<string> string str2 = "hello world"; cout << str2 << endl; system("pause"); return 0; }
作用:布林資料型別代表真或假的值
bool型別只有兩個值:
1.true 真
2.false 假
bool型別佔一個位元組
#include<iostream>#include<string>using namespace std;int main(){//1.建立bool資料型別bool flag = true;cout << flag << endl;flag = false;cout << flag << endl;//本質是1就是真,0就是假。//2.檢視bool型別所佔記憶體空間cout <<"bool型別所佔記憶體空間為:" << sizeof(bool) << endl;system("pause");return 0;}#include<iostream> #include<string> using namespace std; int main() { //1.建立bool資料型別 bool flag = true; cout << flag << endl; flag = false; cout << flag << endl; //本質是1就是真,0就是假。 //2.檢視bool型別所佔記憶體空間 cout <<"bool型別所佔記憶體空間為:" << sizeof(bool) << endl; system("pause"); return 0; }
作用:從鍵盤獲取資料
關鍵字:cin
語法:
cin >> 變數
#include<iostream> #include<string> using namespace std; int main() { //1.整型 int a = 0; //儘量初始化,如果不初始化在使用或者列印它時都會報錯。 cout << "請給整型變數a賦值:" << endl; cin >> a; cout << "整型變數a=" << a << endl; //2.浮點型 float f = 0.f; cout << "請給浮點型變數f賦值:" << endl; cin >> f; cout << "浮點型變數f=" << f << endl; //3.字元型 char ch = ' '; cout << "請給字元型變數ch賦值:" << endl; cin >> ch; cout << "字元型變數f=" << ch << endl; //4.字串型 string str = "abc"; cout << "請給字串型變數str賦值:" << endl; cin >> str; cout << "字串型變數str=" << str << endl; //5.布林型,用數位表示真假,只要輸入不是0,那麼就是1 bool flag = false; cout << "請給布林型變數flag賦值:" << endl; cin >> flag; cout << "布林型變數flag=" << flag << endl; system("pause"); return 0; }
本篇文章就到這裡了,希望能夠給你帶來幫助,也希望您能夠多多關注it145.com的更多內容!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45