c语言中的逻辑运算符_C / C ++中的逻辑运算符

c语言中的逻辑运算符

逻辑运算符 (Logical Operators)

Logical operators are used to check the combinations of the two conditional expressions.

逻辑运算符用于检查两个条件表达式的组合。

The following are the types of logical operators.

以下是逻辑运算符类型

  1. Logical AND (&&) Operator

    逻辑AND( && )运算符

  2. Logical OR (||) Operator

    逻辑OR( || )运算符

  3. 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 && operand2
Non-zeroNon-zero1
Non-zero00
0Non-zero0
000
操作数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 && operand2
Non-zeroNon-zero1
Non-zero01
0Non-zero1
000
操作数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!operand
Non-zero0
01
操作数 !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.aspx

c语言中的逻辑运算符

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/543928.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

顶级 Javaer 常用的 14 个类库

作者&#xff1a;小姐姐味道昨天下载下来Java16尝尝鲜。一看&#xff0c;好家伙&#xff0c;足足有176MB大。即使把jmc和jvisualvm给搞了出去&#xff0c;依然还是这么大&#xff0c;真的是让人震惊不已。但即使JDK足够庞大&#xff0c;它的功能也已经不够用了。我们需要借助于…

势头迅猛的儿童手表:恐陷下一个文曲星之地?

历史的节奏&#xff0c;就是不断重复此前发生过的事。虽然表现形态不一&#xff0c;但蕴藏的规律、趋势总是有着惊人的相似。在科技行业&#xff0c;同样如此——iPhone开启的智能手机时代走过的大兴—→平稳→下降态势&#xff0c;与PC的历程几乎是一样的。而在国内&#xff0…

scala 类中的对象是类_Scala中的类和对象

scala 类中的对象是类Scala中的课程 (Classes in Scala) A class is a blueprint for objects. It contains the definition of all the members of the class. There are two types of members of the class in Scala, 类是对象的蓝图。 它包含该类的所有成员的定义。 Scala中…

2022年终总结:不再用“拼命”来应对极度的不安全感

作者 | 磊哥来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;人生匆匆三十四余载&#xff0c;今天又到了辞旧迎新和 2022 年说再&#xff08;也不&#xff09;见的时刻了&#xff0c;所以…

c++中std::find_std :: find()与C ++中的示例

c中std::findfind()作为STL函数 (find() as a STL function) find() is an STL function that comes under the <algorithm> header file which returns an iterator to the first occurrence of the searching element within a range. find()是STL函数&#xff0c;位于…

Java 最常见的 200+ 面试题:面试必备

这份面试清单是从我 2015 年做了 TeamLeader 之后开始收集的&#xff0c;一方面是给公司招聘用&#xff0c;另一方面是想用它来挖掘在 Java 技术栈中&#xff0c;还有那些知识点是我不知道的&#xff0c;我想找到这些技术盲点&#xff0c;然后修复它&#xff0c;以此来提高自己…

python打印多个变量_在Python中打印多个变量

python打印多个变量Like other programming languages, In python also, we can define and print the multiple variables. Here, we see how can we print the single and multiple variables using the print() function? 像其他编程语言一样&#xff0c;在python中&#x…

js之ActiveX控件使用说明 new ActiveXObject()

什么是 ActiveX 控件&#xff1f; ActiveX 控件广泛用于 Internet。它们可以通过提供视频、动画内容等来增加浏览的乐趣。不过&#xff0c;这些程序可能出问题或者向您提供不需要的内容。在某些情况下&#xff0c;这些程序可被 用来以您不允许的方式从计算机收集信息、破坏您的…

vim中的jk为什么是上下_JK轮胎的完整形式是什么?

vim中的jk为什么是上下JK轮胎&#xff1a;Juggilal Kamlapat Ji轮胎 (JK Tyres: Juggilal Kamlapat Ji Tyres) JK Tyre and Industries is an abbreviation of Juggilal Kamlapat Ji Tyres & Industries Ltd. It is an Automobile Tyre, Tubes and Flaps manufacturing com…

【C语言】第二章 类型、运算符和表达式

为什么80%的码农都做不了架构师&#xff1f;>>> 变量和常量是程序处理的两种基本数据对象。 声明语句说明变量的名字及类型&#xff0c;也可以指定变量的初值。 运算符指定要进行的操作。 表达式则把变量与常量组合起来生成新的值。 对象的类型决定该对象可取值的集…

移动最小二乘_最小移动以形成弦

移动最小二乘Problem statement: 问题陈述&#xff1a; Given a string S, write a program to check if it is possible to construct the given string S by performing any of the below operations any number of times. In each step, you can: 给定字符串S &#xff0c;…

转: 加快Android编译速度

转&#xff1a; http://timeszoro.xyz/2015/11/25/%E5%8A%A0%E5%BF%ABandroid%E7%BC%96%E8%AF%91%E9%80%9F%E5%BA%A6/ 加快Android编译速度 发表于 2015-11-25 | 对于Android开发者而言&#xff0c;随着工程不断的壮大&#xff0c;Android项目的编译时间也逐渐变长&#xff…

ipv6寻址_什么是IPV4寻址?

ipv6寻址IPV4寻址简介 (Introduction to IPV4 Addressing ) Internet protocol version 4 in any network, is a standard protocol for assigning a logical address (IP address) to hosts. You are currently using the same protocol. This protocol is capable of providi…

1593: [Usaco2008 Feb]Hotel 旅馆

1593: [Usaco2008 Feb]Hotel 旅馆 Time Limit: 10 Sec Memory Limit: 64 MBSubmit: 489 Solved: 272[Submit][Status][Discuss]Description 奶牛们最近的旅游计划&#xff0c;是到苏必利尔湖畔&#xff0c;享受那里的湖光山色&#xff0c;以及明媚的阳光。作为整个旅游的策划…

最长递增子序列 子串_最长递增子序列

最长递增子序列 子串Description: 描述&#xff1a; This is one of the most popular dynamic programming problems often used as building block to solve other problems. 这是最流行的动态编程问题之一&#xff0c;通常用作解决其他问题的基础。 Problem statement: 问…

beta版本项目冲刺

项目冲刺第一天项目冲刺第二天项目冲刺第三天项目冲刺第四天项目冲刺第五天项目冲刺第六天项目冲刺第七天转载于:https://www.cnblogs.com/malinlin/p/5006041.html

mkdir 函数_PHP mkdir()函数与示例

mkdir 函数PHP mkdir()函数 (PHP mkdir() function) The full form of mkdir is "Make Directory", the function mkdir() is used to create a directory. mkdir的完整格式为“ Make Directory” &#xff0c; 函数mkdir()用于创建目录。 Syntax: 句法&#xff1a…

WPF自定义控件与样式(5)-Calendar/DatePicker日期控件自定义样式及扩展

原文:WPF自定义控件与样式(5)-Calendar/DatePicker日期控件自定义样式及扩展一&#xff0e;前言 申明&#xff1a;WPF自定义控件与样式是一个系列文章&#xff0c;前后是有些关联的&#xff0c;但大多是按照由简到繁的顺序逐步发布的等&#xff0c;若有不明白的地方可以参考本…

Cookie介绍及使用

Cookie学习: 作用:解决了发送的不同请求的数据共享问题 使用: Cookie的创建和存储//创建Cookie对象Cookie cnew Cookie("mouse","");//设置cookie(可选)//设置有效期c.setMaxAge(int seconds);//设置有效路径c.setPath(String uri);//响应Cookie信息给客…

acm模式_ACM的完整形式是什么?

acm模式ACM&#xff1a;计算机协会 (ACM: Association for Computing Machinery) ACM is an abbreviation of the "Association for Computing Machinery (ACM)". ACM是“计算机协会(ACM)”的缩写 。 It is an international academic association or scholarly soc…