码迷,mamicode.com
首页 > 其他好文 > 详细

2021团体程序设计天梯赛 L1-8 乘法口诀数列

时间:2021-04-27 15:09:43      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:class   bool   its   tin   程序   水题   乘法   else   main   

思路:

水题,略过

Tip:

#include <bits/stdc++.h>

using namespace std;

const int maxn = 1000 + 5;
int ans[maxn];

int main() {
    int a, b, n;
    cin >> a >> b >> n;
    ans[1] = a;
    ans[2] = b;
    int lastt = 3;
    for (int i = 1; i <= n; i++) {
        if (lastt > n)
            break;
        int c = ans[i] * ans[i + 1];
        if (c == 0) {
            ans[lastt++] = 0;
            continue;
        }
        stack<int> s;
        while (c) {
            s.push(c % 10);
            c /= 10;
        }
        while (!s.empty()) {
            ans[lastt++] = s.top();
            s.pop();
        }
    }
    bool first = true;
    for (int i = 1; i <= n; i++) {
        if (first) {
            first = false;
            cout << ans[i];
        } else
            cout << " " << ans[i];
    }
    return 0;
}

  

2021团体程序设计天梯赛 L1-8 乘法口诀数列

标签:class   bool   its   tin   程序   水题   乘法   else   main   

原文地址:https://www.cnblogs.com/Whiteying/p/14707774.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!