18 lines
316 B
Rust
18 lines
316 B
Rust
fn main() {
|
|
let mut n = 1;
|
|
|
|
while n < 101 {
|
|
if n % 15 == 0 {
|
|
println!("fizzbuzz");
|
|
} else if n % 3 == 0 {
|
|
println!("fizz");
|
|
} else if n % 5 == 0 {
|
|
println!("buzz");
|
|
} else {
|
|
println!("{}", n);
|
|
}
|
|
|
|
n += 1;
|
|
}
|
|
}
|