标签:++ else targe 技术分享 string images line inline otto
--------------------------------------------
虽然是从最简单的开始刷起,但木有想到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; } }
题目来源: https://leetcode.com/problems/fizz-buzz/
标签:++ else targe 技术分享 string images line inline otto
原文地址:http://www.cnblogs.com/cc11001100/p/5991643.html