题解 2842: 大整数减法

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

大白话描述

摘要:解题思路:注意事项:参考代码:a=int(input().lstrip("0"))b=int(input().lstrip("0"))print(a-b)……

高精度减法

摘要:#include"bits/stdc++.h" using namespace std; int main(){     string s1,s2;     int a1[1000]={0},……

vector存储写法,易懂

摘要:解题思路:减法需要判断会不会为负数注意事项:参考代码:#include <iostream>#include <vector>using namespace std;bool cmp(vector<i……

大整数减法,C++实现

摘要:# 大数减法模板 ```c++ #include #include using namespace std; bool cmp(vector &A, vector &B) { ……

无敌简单求大整数减法

摘要:解题思路:输入字符串逆序转化为数字后存放在数组中,数组先相减后判断,小于0加10,前一位减1.逆序输出注意事项:要先计算后判断,容易被覆盖参考代码:#include<iostream>#include……

2842: 大整数减法

摘要:解题思路:            drr[k]+=10;            drr[k+1]--;.//核心注意事项:参考代码:#include<stdio.h>#include<string.h……

简单借位问题

摘要:解题思路:先将字符串s1,s2逆序存储进对应数组a1,a2中,解题思路:先将字符串s1,s2逆序存储进对应数组a1,a2中,如果a1[i]>s1>>s2; for……