题解 | #特殊乘法#

特殊乘法

https://www.nowcoder.com/practice/a5edebf0622045468436c74c3a34240f

#include <iostream>
#include <string>
using namespace std;


int main() {

    string a, b;
    while (cin >> a >> b) { // 注意 while 处理多个 case
        long long res = 0;
        for (int i = 0; i < a.size(); i++) {
            int a1 = a[i] - '0';
            for (int j = 0; j < b.size(); j++) {

                int b1 = b[j] - '0';
                int k = a1 * b1;
                res = res + k;

            }
        }
        printf("%lld\n", res);
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

不愿透露姓名的神秘牛友
昨天 18:05
点赞 评论 收藏
分享
06-02 15:17
门头沟学院 Java
心爱的idea:怎么会呢 应该是打招呼有问题 问就说实习6个月全国可飞随时到岗
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务