优质题解 川哥的吩咐-题解(C语言代码) 摘要:解题思路: 第一次写大数加法,希望看到这的能够帮助到你。首先我们要先了解大数加法 首先我们用平常写的 # include int main() { int a,b; whi…… 题解列表 2019年11月03日 0 点赞 1 评论 1547 浏览 评分:9.9
用Java写这个题就是作弊 摘要:解题思路:这个题对于用Java写题目的人来说,真的太简单了;只需要包含Java中的<java.math.BigInteger>包,问题就解决一半了。注意事项:一定要包含<java.math.BigIn…… 题解列表 2022年04月20日 0 点赞 0 评论 322 浏览 评分:9.9
C语言快解川哥的吩咐 摘要:解题思路:通过题目可知要多次输入,所以考虑用字符数组用字符数组以后再把字符数组通过-‘0’转化为整形数组,转化成int类型数组以后再对其进行遍历和进位后再进行输出注意事项:参考代码:#include<…… 题解列表 2023年05月21日 0 点赞 0 评论 235 浏览 评分:9.9
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++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <deque>#include <stack>#include <queue>#include <string>#…… 题解列表 2017年08月26日 0 点赞 0 评论 1182 浏览 评分:9.9
java 川哥的吩咐 川哥的吩咐 摘要:解题思路:注意事项:参考代码:import java.math.BigInteger; import java.util.Scanner; public class Main { p…… 题解列表 2024年01月03日 0 点赞 0 评论 75 浏览 评分:9.9
高精度加法 C++ 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> using namespace std; vector<int> add(vector<in…… 题解列表 2021年11月18日 0 点赞 0 评论 287 浏览 评分:9.9
优质题解 高精度加法(C++代码) 摘要:**前言(可了解):**C++语言里最大的64位整数类型有``long long``和``__int64``两种类型(VC还支持``__int64``),它们最多只能容纳不到20位数字,标准输出方式有…… 题解列表 2019年07月25日 0 点赞 0 评论 805 浏览 评分:9.9
while循环的持续输入 摘要:解题思路:注意事项:参考代码:while True: a,b=map(int,input().split()) print(a+b)…… 题解列表 2022年04月06日 0 点赞 0 评论 145 浏览 评分:9.9
题解 1392: 川哥的吩咐 摘要:1•**这里是前置0的新方法,虽然代码较长,但思路清晰啊** /*------------------------------------------------------------…… 题解列表 2022年06月20日 0 点赞 0 评论 304 浏览 评分:9.9