Q:

Rust program to calculate the power of a given number

belongs to collection: Rust Basic Programs

0

Here, we will read the number and power from the user. Then we will calculate the power of a given number using the pow() function and print the result.

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 calculate the power of a given number is given below. The given program is compiled and executed successfully.

// Rust program to calculate the 
// power of given number

use std::io;

fn main() {
    let mut n:u32 = 0;
    let mut p:u32 = 0;
    let mut res:u32 = 0;
    
    let mut input1 = String::new();
    let mut input2 = String::new();
    
    println!("Enter number: ");
    io::stdin().read_line(&mut input1).expect("Not a valid string");
    n = input1.trim().parse().expect("Not a valid number");

    println!("Enter power: ");
    io::stdin().read_line(&mut input2).expect("Not a valid string");
    p = input2.trim().parse().expect("Not a valid number");

    res = n.pow(p);
    
    println!("Result is: {}",res);
}

Output:

RUN 1:
Enter number: 
2
Enter power: 
3
Result is: 8

RUN 2:
Enter number: 
10
Enter power: 
3
Result is: 1000

RUN 3:
Enter number: 
7
Enter power: 
5
Result is: 16807

Explanation:

Here, we read the number and power from the user. Then we calculated the power of a given number using the pow() function 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 find the square root of the given ... >>
<< Rust program to calculate the area of the rectangl...