蓝桥杯算法提高VIP-高精度乘法 (C++代码) 摘要:#include "iostream" #include "cstdio" #include "cstring" #include "algorithm" #include "iomanip"…… 题解列表 2018年09月15日 5 点赞 0 评论 858 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法 (C++代码)代码就丢在这里了 摘要:解题思路: 输入1---->用字符串in1存储---->逆序转换成为数组a----->同理输入2,最后相乘用一个ans存下来,逆序输出即可参考代码:#include<bits/stdc++.h>…… 题解列表 2019年05月24日 0 点赞 0 评论 617 浏览 评分:0.0
小南解题-高精度乘法--1行解决 摘要:'''12:19 2022/5/30,zgn946'''代码太简洁,显示内容太少不让发,容我浅浅的,废话几句哈a=int(input());c=int(…… 题解列表 2022年05月30日 0 点赞 0 评论 157 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法 (C++代码) 摘要:#include<bits/stdc++.h>using namespace std;char a[1000];char b[1000];int ans[10000];void f(char *s,i…… 题解列表 2018年10月26日 1 点赞 0 评论 485 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法 (C语言代码)套用大数加法的思路(模拟手算) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char st[10005],cs[10005]; int a[10005]…… 题解列表 2019年05月06日 0 点赞 0 评论 626 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法 (C++代码) 摘要:解题思路:注意事项:参考代码:高精减法,高精加法,高精乘法呀等等都差不多:#include <iostream> #include <string> #include <cstring> #in…… 题解列表 2018年01月30日 1 点赞 0 评论 876 浏览 评分:0.0
Cpp简单解法 摘要:#思路 例如: 56 5 那么数字第一次 6*5 = 30 ,即数组[0]=30 第二次 5*5 = 25 ,数组[1] = 25 则: 30 % 10 = 0 , 进位 —— 3 …… 题解列表 2021年05月06日 0 点赞 0 评论 223 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法 (C++代码) 摘要:解题思路:运算符重载,大数模板注意事项:+=不要写成=参考代码:#include <iostream> #include <string> #include <memory.h> #includ…… 题解列表 2018年11月21日 0 点赞 0 评论 478 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法python(三行代码) 摘要:参考代码:x = int(input()) y = int(input()) print(x*y)…… 题解列表 2021年11月12日 0 点赞 0 评论 173 浏览 评分:0.0
1583: 蓝桥杯算法提高VIP-高精度乘法 摘要:解题思路:注意事项: 注意数组设置大小,要尽量大参考代码:#include<stdio.h> #include<string.h> int main(){ char a1…… 题解列表 2024年11月15日 0 点赞 0 评论 60 浏览 评分:0.0