Answers for "ffor looops in rust"

0

loop in rust

#![allow(unused_variables)]
fn main() {
let mut x = 5; // mut x: i32
let mut done = false; // mut done: bool

while !done {
    x += x - 3;

    println!("{}", x);

    if x % 5 == 0 {
        done = true;
    }
}
}
Posted by: Guest on June-05-2020

Browse Popular Code Answers by Language