運算子 | 功能 | 範例 |
---|---|---|
! | 非 | !a |
&& | 且 | a && b |
|| | 或 | A || b |
以下為邏輯「非」的例子
#include <iostream> int main(void) { bool a = false; int b = 0; double c = 0.0; std::cout << a << std::endl; std::cout << !a << std::endl; std::cout << b << std::endl; std::cout << !b << std::endl; std::cout << c << std::endl; std::cout << !c << std::endl; return 0; } /* 《程式語言教學誌》的範例程式 http://pydoing.blogspot.com/ 檔名:logicnot.cpp 功能:示範邏輯運算 作者:張凱慶 時間:西元 2010 年 10 月 */
編譯後執行,結果如下
這裡我們用了三種資料型態,分別是 bool 、 int 及 double , C++ 中 0 都會被當成 false ,非 0 的值都會當成 true ,注意整數 0 與浮點數 0.0 的邏輯意義是一樣的,但為避免精確度造成的歧異,因此應該盡量避免使用 0.0 表示 false 。
以下為邏輯「且」的例子
#include <iostream> int main(void) { bool a = false; bool b = true; int c = 1; int d = 0; std::cout << (a && a) << std::endl; std::cout << (a && b) << std::endl; std::cout << (b && b) << std::endl; std::cout << (c && c) << std::endl; std::cout << (c && d) << std::endl; std::cout << (d && d) << std::endl; return 0; } /* 《程式語言教學誌》的範例程式 http://pydoing.blogspot.com/ 檔名:logicand.cpp 功能:示範邏輯運算 作者:張凱慶 時間:西元 2010 年 10 月 */
編譯後執行,結果如下
以下為邏輯「或」的例子
#include <iostream> int main(void) { bool a = false; bool b = true; int c = 1; int d = 0; std::cout << (a || a) << std::endl; std::cout << (a || b) << std::endl; std::cout << (b || b) << std::endl; std::cout << (c || c) << std::endl; std::cout << (c || d) << std::endl; std::cout << (d || d) << std::endl; return 0; } /* 《程式語言教學誌》的範例程式 http://pydoing.blogspot.com/ 檔名:logicor.cpp 功能:示範邏輯運算 作者:張凱慶 時間:西元 2010 年 10 月 */
編譯後執行,結果如下
中英文術語對照 | |
---|---|
邏輯運算子 | logical operator |
運算元 | operand |
您可以繼續參考
運算式
型態轉換
相關目錄
回 C++ 快速導覽
回 C++ 教材
回首頁
參考資料
C++ reference
cplusplus.com
Cprogramming.com C++ Tutorial
C++ Primer, Fourth Edition, Stanley B. Lippman...
本文於 2013 年 1 月更新
2 則留言:
站長辛苦了,閱覽獲益良多,
小弟閱覽時發現了錯誤,
是為本篇OR邏輯程式範例的錯誤,
方便起見先寫成0與1來表示:
a=0,b=1,c=1,d=0
依照布林代數運算正確結果應該如下:
a or b=1
a or a=0
b or b=1
c or c=1
c or d=1
d or d=0
可是您範例的結果卻是:
a or b=0
a or a=1
b or b=1
c or c=1
c or d=1
d or d=0
後來我把範例CODE用GNU編譯器
在WINDOWS7編譯下的結果為:
a or b=1
a or a=0
b or b=1
c or c=1
c or d=1
d or d=0
可能是搞混了螢幕截圖吧?
勞煩站長修正^^
這邊是程式碼打錯了,已修改。改謝指正 :)
張貼留言