给用Java的开一下荒土 摘要:解题思路:先倒叙,后数组,再转成int进行相加注意事项:参考代码:import java.util.Scanner;public class Ma…… 题解列表 2023年04月04日 0 点赞 0 评论 133 浏览 评分:0.0
编写题解 2841: 大整数加法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){ intmaxmi…… 题解列表 2023年02月02日 0 点赞 0 评论 158 浏览 评分:0.0
题解 2841: 大整数加法 (c++)string解题 摘要:解题思路:用string把输入的数字倒叙存入在数组里面,然后进行对位相加,再倒叙输出参考代码:#include <iostream>using name…… 题解列表 2023年01月19日 0 点赞 0 评论 248 浏览 评分:9.0
现代语言就是省事 摘要:解题思路:python默认输入为字符串,所以可以用字符串的方式处理数据注意事项:(一)题干中说明数据输入前有0,所以需要将0删除后,再做运算 …… 题解列表 2023年01月06日 0 点赞 1 评论 301 浏览 评分:3.3
大整数加法 摘要:解题思路:说白了,就是进位与ASCII码值的转换注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){ …… 题解列表 2022年11月19日 0 点赞 6 评论 556 浏览 评分:9.9
2841: 大整数加法 摘要:解题思路:模拟手算,将两数末尾对齐,自末端逐个相加,如有进位向高位进位注意事项:不要将前导0(即数字前有0)输出参考代码: #include<stdio.h>#inclu…… 题解列表 2022年11月15日 0 点赞 0 评论 595 浏览 评分:9.9