Home »
Rust »
Rust Programs
Rust program to demonstrate the break statement with while and for loops
Rust | break statement with while and for loops: write an example to demonstrate the example of break statement with while and for loops.
Last Updated : October 05, 2021
Problem Statement
In this program, we will use the break statement with while and for loop to terminate the loop when the given if statement is true.
Program/Source Code
The source code to demonstrate the break statement with the while and for loop is given below. The given program is compiled and executed successfully.
// Rust program to demonstrate the
// break statement with "while" and "for" loops
fn main() {
let mut cnt:i32 = 1;
while cnt<=10
{
print!("{} ",cnt);
if cnt==5
{
break;
}
cnt=cnt+1;
}
println!();
for cnt in 1..11
{
print!("{} ",cnt);
if cnt==5
{
break;
}
}
}
Output
1 2 3 4 5
1 2 3 4 5
Explanation
Here, we used the break statement with while and for loop to terminate the loop when the value of the cnt variable is equal to 5.
Rust Looping Programs »
Advertisement
Advertisement