Q:

Rust program to demonstrate the arithmetic operators

belongs to collection: Rust Basic Programs

0

Here, we will create three integer variables and perform all arithmetic operations, and print results.

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 arithmetic operators is given below. The given program is compiled and executed successfully.

// Rust program to demonstrate the 
// arithmetic operators

fn main() {
    let mut num1:i32=27;
    let mut num2:i32=5;
    let mut num3:i32=0;
    
    // '+' operator
    num3=num1+num2;
    println!("Addition is: {}",num3);

    // '-' operator
    num3=num1-num2;
    println!("Subtraction is: {}",num3);

    // '*' operator
    num3=num1*num2;
    println!("Multiplication is: {}",num3);

    // '/' operator
    num3=num1/num2;
    println!("Division is: {}",num3);

    // '%' operator
    num3=num1%num2;
    println!("Remainder is: {}",num3);    
}

Output:

Addition is: 32
Subtraction is: 22
Multiplication is: 135
Division is: 5
Remainder is: 2

Explanation:

Here, we created three integer variables num1num2, and num3 that are initialized with 27, 5, 0 respectively. Then we performed all arithmetic operations 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 assignment operato... >>
<< Rust program to print the ASCII value of a charact...