mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
examples: fizz_buzz.v
This commit is contained in:
parent
7a79c94a9e
commit
c617cf8e05
21
examples/fizz_buzz.v
Normal file
21
examples/fizz_buzz.v
Normal file
@ -0,0 +1,21 @@
|
||||
fn main() {
|
||||
mut s := ''
|
||||
|
||||
for n in 1..101 {
|
||||
if n % 3 == 0 {
|
||||
s += 'Fizz'
|
||||
}
|
||||
|
||||
if n % 5 == 0 {
|
||||
s += 'Buzz'
|
||||
}
|
||||
|
||||
if s == '' {
|
||||
println(n)
|
||||
} else {
|
||||
println(s)
|
||||
}
|
||||
|
||||
s = ''
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user