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 num1, num2, that are initialized with 22, 15 respectively. Then we compared variables using relational operators and printed the result.
Program/Source Code:
The source code to demonstrate the relational operators is given below. The given program is compiled and executed successfully.
Output:
Explanation:
Here, we created two integer variables num1, num2, 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