--------------------------------------------
虽然是从最简单的开始刷起,但木有想到LeetCode上也有这么水的题目啊。。。
AC代码:
public class Solution {
public List<String> fizzBuzz(int n) {
List<String> res=new ArrayList<>();
for(int i=1;i<=n;i++){
if(i/3*3==i && i/5*5==i) res.add("FizzBuzz");
else if(i/3*3==i) res.add("Fizz");
else if(i/5*5==i) res.add("Buzz");
else res.add(Integer.toString(i));
}
return res;
}
}