Fizz Buzz
Write a program that outputs the string representation of numbers from 1 to n.
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:
1 | n = 15, |
思路:看懂题意以后就很简单了,仔细考虑清楚怎么判断更合理即可。
java代码如下:
1 | class Solution { |