How to find the Subtraction of Two Numbers in Rust - Step by Step Examples
How to find the Subtraction of Two Numbers in Rust ?
Answer
To find the subtraction of numbers in Rust, you can use the '-' operator.
✐ Examples
1 Subtraction of Two Numbers
In this example,
- We assign the numbers to be subtracted to variables
num1
andnum2
. - We subtract
num2
fromnum1
using the-
operator and assign the result to a variableresult
. - Finally, we print the value of
result
.
Rust Program
fn main() {
let num1 = 20;
let num2 = 10;
let result = num1 - num2;
println!("Subtraction of {} and {} is: {}", num1, num2, result);
}
Output
Subtraction of 20 and 10 is: 10
Summary
In this tutorial, we learned How to find the Subtraction of Two Numbers in Rust language with well detailed examples.