zoukankan      html  css  js  c++  java
  • 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”.

    Example:

    n = 15,
    
    Return:
    [
        "1",
        "2",
        "Fizz",
        "4",
        "Buzz",
        "Fizz",
        "7",
        "8",
        "Fizz",
        "Buzz",
        "11",
        "Fizz",
        "13",
        "14",
        "FizzBuzz"
    ]
    数字转化为字符串

    1.使用to_string

    1 #include <iostream>
    2 #include <string>
    3 using namespace std;
    4 int main() {
    5     int a = 123;
    6     string s = to_string(a);
    7     cout << s;
    8     return 0;
    9 }

    2.使用stringstream

    #include <iostream>
    #include <sstream>
    using namespace std;
    int main() {
        stringstream stream;
        string str;
        int a = 123;
        stream << a;
        stream >> str;
        cout << str;
        return 0;
    }

    3.如果是字符数组(使用sprintf)

     1 #include <iostream>
     2 #include <cstdio>
     3 using namespace std;
     4 int main() {
     5     char c[50] = "123";
     6     int a;
     7     sscanf(c, "%d", &a); // 不要忘记 “&”
     8     int b = 567;
     9     sprintf(c, "%d", b);
    10     cout << a << endl << c;
    11     return 0;
    12 }
    13 
    14 /*
    15 sscanf将字符数组转换为数字,输入到数字变量中
    16 sprintf将数字转换为字符数组,输出到字符数组变量中
    17 */
    class Solution {
    public:
        vector<string> fizzBuzz(int n) {
            vector<string> result;
            for(int i = 1; i <= n; i++){
                if(i % 3 == 0){
                    if(i % 5 == 0){
                        result.push_back("FizzBuzz");
                    } else {
                        result.push_back("Fizz");
                    }
                } else if(i % 5 == 0){
                    result.push_back("Buzz");
                } else {
                    result.push_back(to_string(i));
                }
            }
            return result;
        }
    };
     
  • 相关阅读:
    es 报错cannot allocate because allocation is not permitted to any of the nodes
    linux下获取软件源码包 centos/redhat, debian/ubuntu
    windows假死原因调查
    k8s-calico
    helm使用
    docker网络模式
    4、formula 法则、原则、数学公式
    powershell自动添加静态IP
    WDS部署Windows server2012初试
    2、puppet资源详解
  • 原文地址:https://www.cnblogs.com/qinduanyinghua/p/6357654.html
Copyright © 2011-2022 走看看