Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Logical Operators | Introduction to Operators
course content

Conteúdo do Curso

C++ Introduction

Logical OperatorsLogical Operators

You have to use the logical operators NOT (!), AND (&&), and OR (||) to evaluate multiple conditions concurrently. Let's illustrate using logical operators in real-life scenarios:

  • I will take my wallet for a walk if there is a bank AND a shop on the way;
  • I won't take my wallet for a walk if there is NOT bank on the way;
  • I will take my wallet for a walk if there is a bank OR a shop on the way.
cpp

main.cpp

What will the program output?

Selecione a resposta correta

Tudo estava claro?

Seção 3. Capítulo 3
course content

Conteúdo do Curso

C++ Introduction

Logical OperatorsLogical Operators

You have to use the logical operators NOT (!), AND (&&), and OR (||) to evaluate multiple conditions concurrently. Let's illustrate using logical operators in real-life scenarios:

  • I will take my wallet for a walk if there is a bank AND a shop on the way;
  • I won't take my wallet for a walk if there is NOT bank on the way;
  • I will take my wallet for a walk if there is a bank OR a shop on the way.
cpp

main.cpp

What will the program output?

Selecione a resposta correta

Tudo estava claro?

Seção 3. Capítulo 3
some-alt