Q:

Rust program to convert a float number into an integer number

belongs to collection: Rust Basic Programs

0

In this program, we will create a float variable then we will assign the value of the float variable by converting it into an integer variable using the "as" keyword.

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 convert a float number into an integer number is given below. The given program is compiled and executed successfully.

// Rust program to convert float number 
// into an integer number

fn main() 
{
    let mut floatVar:f32 = 5.64;
    let mut intVar:i32 = 0;
    
    intVar = floatVar as i32;
    println!("Number is : {}",intVar);
}

Output:

Number is : 5

Explanation:

Here, we created a variable floatVar of the f32 type. Then we assigned the value of the floatVar variable into the intVar variable using the "as" keyword. After that, we 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 convert an integer number into a f... >>
<< Rust program to calculate the division without usi...