Q:

Rust program to demonstrate the relational operators

belongs to collection: Rust Basic Programs

0

Here, we will create two integer variables and then compare the value of variables using relational operators and print appropriate messages.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate the relational operators is given below. The given program is compiled and executed successfully.

// Rust program to demonstrate 
// the relational operators

fn main() {
    let mut num1:i32=22;
    let mut num2:i32=15;
    
    if(num1 == num2)
    {
        println!("Num1 is equal to Num2");
    }

    if(num1 != num2)
    {
        println!("Num1 is not equal to Num2");
    }

    if(num1 < num2)
    {
        println!("Num1 is less than Num2");
    }

    if(num1 > num2)
    {  
        println!("Num1 is greater than Num2");
    }

    if(num1 <= num2)
    {
        println!("Num1 is less than or equal to Num2");
    }

    if(num1 >= num2)
    {
        println!("Num1 is greater than or equal to Num2");
    }
}

Output:

Num1 is not equal to Num2
Num1 is greater than Num2
Num1 is greater than or equal to Num2

Explanation:

Here, we created two integer variables num1num2, that are initialized with 22, 15 respectively. Then we compared variables using relational operators and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Rust Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Rust program to demonstrate the logical AND operat... >>
<< Rust program to demonstrate the assignment operato...