box-o-sand/rustbyexample/flow_control.d/for.rs

14 lines
281 B
Rust
Raw Normal View History

2023-09-26 15:03:55 +00:00
fn main() {
for n in 1..101 {
if n % 15 == 0 {
println!("fizzbuzz");
} else if n % 3 == 0 {
println!("fizz");
} else if n % 5 == 0 {
println!("buzz");
} else {
println!("{}", n);
}
}
}