[容易]Fizz Buzz 问题

题目来源:http://www.lintcode.com/zh-cn/problem/fizz-buzz/

可以accept的程序如下:

 1 class Solution {
 2 public:
 3     /**
 4      * param n: As description.
 5      * return: A list of strings.
 6      */
 7     vector<string> fizzBuzz(int n) {
 8         vector<string> results;
 9         for (int i = 1; i <= n; i++) {
10             if (i % 15 == 0) {
11                 results.push_back("fizz buzz");
12             } else if (i % 5 == 0) {
13                 results.push_back("buzz");
14             } else if (i % 3 == 0) {
15                 results.push_back("fizz");
16             } else {
17                 results.push_back(to_string(i));
18             }
19         }
20         return results;
21     }
22 };
原文地址:https://www.cnblogs.com/hslzju/p/5450536.html