您好,登錄后才能下訂單哦!
今天小編給大家分享一下C++的運算符怎么正確使用的相關(guān)知識點,內(nèi)容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
運算符的作用:用于執(zhí)行代碼的運算
主要有:
用于處理四則運算
對于前置遞增:將遞增運算前置,使變量先加一,再進行表達式運算。
對于后置遞增:將遞增運算后置,使變量先進行表達式運算,再加一。
#include<iostream> using namespace std; int main() { //1.前置遞增:先加一,再進行表達式運算 int a = 10; int b = ++a * 10; cout << "a = " << a << endl; cout << "b = " << b << endl; //2.后置遞增:先進行表達式運算,再加一 int c = 10; int d = c++ * 10; cout << "c = " << c << endl; cout << "d = " << d << endl; system("pause"); return 0; }
#include<iostream> using namespace std; int main1() { //賦值運算符 int a = 10; int b = 2; cout << "a = " << a << endl; //+= a = 10; a += b; cout << "a = " << a << endl; //-= a = 10; a -= b; cout << "a = " << a << endl; //*= a = 10; a *= b; cout << "a = " << a << endl; // /= a = 10; a /= b; cout << "a = " << a << endl; // %= a = 10; a %= b; cout << "a = " << a << endl; system("pause"); return 0; }
#include<iostream> using namespace std; int main() { cout << (4 == 3) << endl; cout << (4 != 3) << endl; cout << (4 < 3) << endl; cout << (4 > 3) << endl; cout << (4 >= 3) << endl; cout << (4 <= 3) << endl; system("pause"); return 0; }
#include<iostream>using namespace std;int main(){int a = 5;// 邏輯運算符 非cout << !a << endl;cout << !!a << endl;// 邏輯運算符 與int b = 0;int c = 3;cout << (a && b) << endl;cout << (a && c) << endl;//邏輯運算符 或cout << (!a || b) << endl;cout << (a || c) << endl;system("pause");return 0;}#include<iostream> using namespace std; int main() { int a = 5; // 邏輯運算符 非 cout << !a << endl; cout << !!a << endl; // 邏輯運算符 與 int b = 0; int c = 3; cout << (a && b) << endl; cout << (a && c) << endl; //邏輯運算符 或 cout << (!a || b) << endl; cout << (a || c) << endl; system("pause"); return 0; }
以上就是“C++的運算符怎么正確使用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。