mirror of
https://github.com/KarolS/millfork.git
synced 2025-01-12 03:30:09 +00:00
19 lines
335 B
Plaintext
19 lines
335 B
Plaintext
import stdio
|
|
|
|
void main() {
|
|
byte i
|
|
for i,1,to,100 {
|
|
if i %% 15 == 0 {
|
|
putstrz("フィズバズ"z)
|
|
} else if i %% 3 == 0 {
|
|
putstrz("フィズ"z)
|
|
} else if i %% 5 == 0 {
|
|
putstrz("バズ"z)
|
|
} else {
|
|
putword(i)
|
|
}
|
|
putchar(' ')
|
|
}
|
|
}
|
|
|