首页 > 代码库 > 412.数组下标的倍数 Fizz Buzz
412.数组下标的倍数 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”.
public class Solution {
public IList<string> FizzBuzz(int n) {
List<string> list = new List<string>();
for (int index = 1; index <= n; index++) {//要从1开始,另外要注意0%任意数字都是0
if (index % 3 == 0 && index % 5 == 0) {
list.Add("FizzBuzz");
} else if (index % 3 == 0) {
list.Add("Fizz");
} else if (index % 5 == 0) {
list.Add("Buzz");
} else {
list.Add(index.ToString());
}
}
return list;
}
}
来自为知笔记(Wiz)
412.数组下标的倍数 Fizz Buzz
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。