1392: 川哥的吩咐(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[1001], b[1001], a…… 题解列表 2021年05月05日 0 点赞 0 评论 569 浏览 评分:9.9
C语言快解川哥的吩咐 摘要:解题思路:通过题目可知要多次输入,所以考虑用字符数组用字符数组以后再把字符数组通过-‘0’转化为整形数组,转化成int类型数组以后再对其进行遍历和进位后再进行输出注意事项:参考代码:#include<…… 题解列表 2023年05月21日 0 点赞 0 评论 235 浏览 评分:9.9
高精度加法 C++ 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> using namespace std; vector<int> add(vector<in…… 题解列表 2021年11月18日 0 点赞 0 评论 287 浏览 评分:9.9
清晰高精度数字加法 摘要:解题思路:注意事项:参考代码://高精度数字相加#include#includechar n[1001], m[1001];int a[1001], b[1001], c[1001];int main…… 题解列表 2023年12月13日 0 点赞 3 评论 131 浏览 评分:9.9
优质题解 川哥的吩咐-题解(C语言代码) 摘要:解题思路: 第一次写大数加法,希望看到这的能够帮助到你。首先我们要先了解大数加法 首先我们用平常写的 # include int main() { int a,b; whi…… 题解列表 2019年11月03日 0 点赞 1 评论 1548 浏览 评分:9.9
川哥的吩咐 (C语言代码) 摘要:解题思路: 本题为大数据储存,所以要用数组来储存数据注意事项: 1.需要考虑是否有进位,特别是最高位,所以需要把储存数字的和的数字多考虑一位 2.需要辅助数组将数字对齐,以便相加。…… 题解列表 2018年07月29日 6 点赞 0 评论 1244 浏览 评分:9.3
ACM大数加法 (C/C++高精度加法) 摘要:本文部分内容引用以下优质文章:ACM大数加法解题思路:如果不要求高精度,下面这段简单的代码足矣:#include <stdio.h>int main() { int a,b; w…… 题解列表 2019年01月20日 2 点赞 0 评论 875 浏览 评分:8.7
全在代码中了 摘要:#include <string.h> #include <stdio.h> #include <stdlib.h> #include <math.h> int main() { …… 题解列表 2021年03月05日 0 点赞 0 评论 370 浏览 评分:8.0
川哥的吩咐-题解(C++代码) 摘要:```cpp #include #include using namespace std; void bigAddAndPrint(string a,string b) { i…… 题解列表 2019年12月05日 0 点赞 1 评论 517 浏览 评分:7.0
可 AC 摘要:解题思路:用字符数组储存两个加数,从个位开始,进行相加,结果存放另一个数组里,(顺便考虑是否进位) 注意事项: 在下的方法 要注意 每次输入数据时,要进行清空数组和进…… 题解列表 2018年07月29日 1 点赞 1 评论 270 浏览 评分:6.0