Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,945 questions

51,887 answers

573 users

How to use loop in Rust

3 Answers

0 votes
fn main() {
    let mut counter = 0;
    loop {
        counter += 1;
        if counter == 4 {
            println!("continue");
            continue;
        }
        println!("{}", counter);
        if counter == 6 {
            println!("break");
            break; 
        }
    }
}




/*
run:

1
2
3
continue
5
6
break

*/

 



answered Feb 8, 2023 by avibootz
0 votes
fn main() {
    let mut counter = 0;

    let result = loop {
        counter += 1;

        if counter == 9 {
            break counter * 2;
        }
    };
    
    println!("{}", result);
}



  
/*
run:
  
18
  
*/

 



answered Apr 27, 2023 by avibootz
0 votes
fn main() {
    let x;
    
    loop { x = 3; break; }
    
    println!("{}", x)
}



  
/*
run:
  
3
  
*/

 



answered Apr 27, 2023 by avibootz

Related questions

1 answer 128 views
2 answers 135 views
2 answers 143 views
1 answer 98 views
98 views asked Oct 24, 2022 by avibootz
3 answers 184 views
184 views asked Oct 24, 2022 by avibootz
1 answer 85 views
1 answer 83 views
...