Q:

Rust program to demonstrate the logical AND operator

belongs to collection: Rust Basic Programs

0

Here, we will create three integer variables and then we will find the largest number among them using the logical AND operator and print the appropriate message.

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 logical AND operator is given below. The given program is compiled and executed successfully.

// Rust program to demonstrate 
// the logical AND operator

fn main() {
    let mut num1:i32=22;
    let mut num2:i32=15;
    let mut num3:i32=16;
    
    if(num1 > num2 && num1 > num3)
    {
        println!("Num1 is largest number");
    }
    else if(num2 > num1 && num2 > num3)
    {
        println!("Num2 is largest number");
    }
    else
    {
        println!("Num3 is largest number");
    }
}

Output:

Num1 is largest number

Explanation:

Here, we created three integer variables num1num2num3 that are initialized with 22, 15, 16 respectively. Then we found the largest number among them and printed the appropriate message.

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 OR (||) op... >>
<< Rust program to demonstrate the relational operato...