当前位置: 首页 > news >正文

帝国cms网站名称做网站优化选阿里巴巴还是百度

帝国cms网站名称,做网站优化选阿里巴巴还是百度,宁波公司,php制作网站后台c语言中的逻辑运算符逻辑运算符 (Logical Operators) Logical operators are used to check the combinations of the two conditional expressions. 逻辑运算符用于检查两个条件表达式的组合。 The following are the types of logical operators. 以下是逻辑运算符的类型 。…c语言中的逻辑运算符 逻辑运算符 (Logical Operators) Logical operators are used to check the combinations of the two conditional expressions. 逻辑运算符用于检查两个条件表达式的组合。 The following are the types of logical operators. 以下是逻辑运算符的类型 。 Logical AND () Operator 逻辑AND( )运算符 Logical OR (||) Operator 逻辑OR( || )运算符 Logical NOT (!) Operator 逻辑NOT( )运算符 1)逻辑AND()运算符 (1) Logical AND () Operator) Logical AND operator represented by the symbols , it works with two operands and returns 1 if both operands are true (non-zero); 0, otherwise. 逻辑AND运算符由符号“ ”表示它与两个操作数一起使用如果两个操作数均为true(非零)则返回1否则返回1。 0否则。 Note: Operands can be values, conditions, expressions, etc. 注意 操作数可以是值条件表达式等。 Syntax: 句法 operand1 operand2 Truth table: 真相表 operand1operand2operand1 operand2Non-zeroNon-zero1Non-zero000Non-zero0000 操作数1 操作数2 操作数1 操作数2 非零 非零 1个 非零 0 0 0 非零 0 0 0 0 C program to demonstrate the example of logical AND () operator C 程序演示逻辑AND()运算符的示例 #include iostream using namespace std; int main() { int a 10; int b 20; // printing the values cout a : a endl; cout b : b endl; cout endl; // Logical AND operations cout (a b) : (a b) endl; cout (a 0) : (a 0) endl; cout (0 b) : (0 b) endl; cout (0 0) : (0 0) endl; cout endl; cout (a 10 b 30) : (a 10 b 30) endl; cout (a 10 b 20) : (a 10 b 20) endl; cout (a 10 b 30) : (a 10 b 30) endl; cout (a 10 b 20) : (a 10 b 20) endl; return 0; } Output: 输出 a : 10 b : 20 (a b) : 1 (a 0) : 0 (0 b) : 0 (0 0) : 0 (a 10 b 30) : 1 (a 10 b 20) : 1 (a 10 b 30) : 0 (a 10 b 20) : 0 2)逻辑或(||)运算符 (2) Logical OR (||) Operator) Logical OR operator represented with the symbols ||, it works with two operands and returns 1 if one (or both) operands are true (non-zero); 0, otherwise. 用符号“ || ”表示的逻辑“或”运算符 可用于两个操作数如果一个(或两个)操作数为真(非零)则返回1否则返回1。 0否则。 Syntax: 句法 operand1 || operand2 Truth table: 真相表 operand1operand2operand1 operand2Non-zeroNon-zero1Non-zero010Non-zero1000 操作数1 操作数2 操作数1 操作数2 非零 非零 1个 非零 0 1个 0 非零 1个 0 0 0 C program to demonstrate the example of logical OR (||) operator C 程序演示逻辑OR(||)运算符的示例 #include iostream using namespace std; int main() { int a 10; int b 20; // printing the values cout a : a endl; cout b : b endl; cout endl; // Logical OR operations cout (a || b) : (a || b) endl; cout (a || 0) : (a || 0) endl; cout (0 || b) : (0 || b) endl; cout (0 || 0) : (0 || 0) endl; cout endl; cout (a 10 || b 30) : (a 10 || b 30) endl; cout (a 10 || b 20) : (a 10 || b 20) endl; cout (a 10 || b 30) : (a 10 || b 30) endl; cout (a 10 || b 20) : (a 10 || b 20) endl; return 0; } Output: 输出 a : 10 b : 20 (a || b) : 1 (a || 0) : 1 (0 || b) : 1 (0 || 0) : 0 (a 10 || b 30) : 1 (a 10 || b 20) : 1 (a 10 || b 30) : 1 (a 10 || b 20) : 0 3)逻辑非()运算符 (3) Logical NOT (!) Operator) Logical NOT operator represented by the symbols !, it works with one operand and returns 1 if the operand is zero;0, otherwise. 逻辑NOT运算符以符号“ ”表示它与一个操作数一起使用如果操作数为零则返回1否则返回0。 Syntax: 句法 !operand Truth table: 真相表 operand!operandNon-zero001 操作数 operand 非零 0 0 1个 C program to demonstrate the example of logical NOT (!) operator C 程序演示逻辑NOT()运算符的示例 #include iostream using namespace std; int main() { int a 10; int b 0; // printing the values cout a : a endl; cout b : b endl; cout endl; cout !a : !a endl; cout !b : !b endl; cout endl; // Logical NOT operations cout !(a || b) : !(a || b) endl; cout !(a || 0) : !(a || 0) endl; cout !(0 || b) : !(0 || b) endl; cout !(0 || 0) : !(0 || 0) endl; cout endl; cout !(a 10 || b 30) : !(a 10 || b 30) endl; cout !(a 10 || b 20) : !(a 10 || b 20) endl; cout !(a 10 || b 30) : !(a 10 || b 30) endl; cout !(a 10 || b 20) : !(a 10 || b 20) endl; return 0; } Output: 输出 a : 10 b : 0 !a : 0 !b : 1 !(a || b) : 0 !(a || 0) : 0 !(0 || b) : 1 !(0 || 0) : 1 !(a 10 || b 30) : 0 !(a 10 || b 20) : 0 !(a 10 || b 30) : 0 !(a 10 || b 20) : 0 Recommended posts 推荐的帖子 Assignments Operators in C/C C / C 中的赋值运算符 Relational Operators in C/C C / C 中的关系运算符 Pre-increment and Post-increment Operators in C/C C / C 中的预增和后增运算符 sizeof() Operator Operands in C programming C 编程中的sizeof()运算符操作数 C Alternative Operator Representations C 替代运算符表示 C Operatots (new, delete, ) C Operatots(新增删除) What is the value of sizeof(x) and type of character literals in C? C 中sizeof(x)的值和字符文字的类型是什么 Difference between new and malloc() in C C 中的new和malloc()之间的区别 Difference between delete and free() in C C 中delete和free()之间的区别 翻译自: https://www.includehelp.com/cpp-tutorial/logical-operators-in-c-cpp.aspxc语言中的逻辑运算符
http://www.pierceye.com/news/899697/

相关文章:

  • 北京建站公司哪个好05网电子书
  • 权威网站设计wordpress通知站点360搜索
  • 做靓号网站凡客小程序
  • 创建网站开发公司公司做个网站
  • 做网站的工具+论坛html怎么自己做网站
  • 土木在线seo网站快速整站优化技术
  • 创造力网站设计建设有限公司网站
  • 如何做网站好看做h5小程序的网站
  • 济宁网站建设价格做网站公司深
  • ae成品免费下载网站申请一个app多少钱
  • 我想自己在网站上发文章 怎样做免费观看高清正能量直播下载
  • 做网站万网长春建站模板展示
  • 广州专业建网站公司福州网站制作
  • 西安烽盈网站建设郑州营销网站托管
  • 诸几建设银行网站怎么维护好网站
  • 深圳市国外网站建设简单html5网页设计
  • 网站制作公司西南城乡建设部网站首页
  • 网站名和域名能一样吗企业网站建设硬件
  • 德州做网站公司怎么开网店淘宝
  • 苏州做网站优化的电商定制开发
  • 广西庆海建设发展有限公司网站昆山有做网站的公司吗
  • 前端课程网站wordpress 微博登陆
  • asp怎么做网站适配开发公司安置房项目工程推进大会
  • 学做网站可以赚钱吗怎么批量修改wordpress文章内容
  • 写作网站vir上海博大园林建设发展有限公司网站
  • wordpress video gallery网站代码优化怎么做
  • 厦门网站设计品牌企业互联网门户网站建设
  • 做名片模板网站中文响应式网站
  • 用tornado做网站石家庄 外贸网站建设公司
  • 档案网站建设网页wordpress keyshot