412 fizz buzz
Write a program that outputs the string representation of numbers from 1 ton.
But for multiples of three it should output “Fizz” instead of the number and for the multiples of five output “Buzz”. For numbers which are multiples of both three and five output “FizzBuzz”.
Example:
没什么好说的,第一次裸考ibm的时候看过,也一次就写对了。主要注意的是要先判断FizzBuzz的情况,然后再分开fizz和buzz。
Last updated