6.6. Relational Operators: Less than or equal to

Página 28

In any programming course, one of the most important topics you will learn is relational operators. In this chapter of our ebook, we're going to focus specifically on the "less than or equal to" relational operator. This is a fundamental concept in programming logic and is essential for understanding how programs work and how decisions are made within a program.

Relational operators are used to compare two values. In the case of the "less than or equal to" operator, it is used to determine whether one value is less than or equal to another. In programming terms, this is represented as "<=".

For example, if we have two variables, a and b, and we want to check if a is less than or equal to b, we would write the following expression: a <= b. If a is indeed less than or equal to b, the expression returns true. If a is greater than b, the expression will return false.

Relational operators are fundamental in creating control structures such as loops and conditionals. They allow the program to make decisions based on comparisons between values. For example, you can use the "less than or equal to" operator to create a loop that runs until a certain condition is met.

Suppose you are writing a program that prompts the user to enter a number and then prints all numbers from 1 to the number entered by the user. You can do this using a loop and the "less than or equal to" operator.

Here is an example of how you can do this:


int number = input("Enter a number: ");
int i = 1;

while (i <= number) {
  print(i);
  i++;
}

In this example, the loop will continue to run as long as the variable i is less than or equal to the number entered by the user. At each iteration of the loop, the value of i is incremented by 1. When i becomes greater than the number entered by the user, the condition i <= number becomes false and the loop stops executing.

The "less than or equal to" operator is also commonly used in conditionals. For example, you can use this operator to check whether a user is eligible for a certain promotion. Suppose you have a promotion that is only available to people aged 18 and over. You can check the user's eligibility using a conditional statement and the "less than or equal to" operator.


int age = input("Enter your age: ");

if (age < 18) {
  print("Sorry, you are not eligible for this promotion.");
} else {
  print("Congratulations! You are eligible for this promotion.");
}

In this example, if the user's age is less than 18, the message "Sorry, you are not eligible for this promotion." will be printed. If the user's age is 18 or older, the message "Congratulations! You are eligible for this promotion." will be printed.

As you can see, the "less than or equal to" operator is a powerful tool in logic programming. It allows you to compare values ​​and make decisions based on those values. We hope that by reading this chapter you will have a solid understanding of this operator and how to use it in your programs.

In the next chapter, we'll explore other relational operators and how they can be used in programming. Stay tuned!

Now answer the exercise about the content:

What is the role of the "less than or equal to" relational operator in programming?

You are right! Congratulations, now go to the next page

You missed! Try again.

Next page of the Free Ebook:

297. Logical Operators

Earn your Certificate for this Course for Free! by downloading the Cursa app and reading the ebook there. Available on Google Play or App Store!

Get it on Google Play Get it on App Store

+ 6.5 million
students

Free and Valid
Certificate with QR Code

48 thousand free
exercises

4.8/5 rating in
app stores

Free courses in
video, audio and text