2842: 大整数减法 摘要:解题思路: drr[k]+=10; drr[k+1]--;.//核心注意事项:参考代码:#include<stdio.h>#include<string.h…… 题解列表 2024年10月31日 0 点赞 0 评论 75 浏览 评分:0.0
好写》好写 摘要:参考代码:#include<stdio.h> #include<string.h> char s1[201], s2[201]; int a[201], b[201], c[201]; …… 题解列表 2024年01月16日 0 点赞 0 评论 95 浏览 评分:9.9
大白话描述 摘要:解题思路:注意事项:参考代码:a=int(input().lstrip("0"))b=int(input().lstrip("0"))print(a-b)…… 题解列表 2023年11月26日 0 点赞 0 评论 56 浏览 评分:0.0
(大整数减法)C语言思路简单,易懂!!! 理解万岁 超级好理解 &_& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <string.h>void change(char n[],int m){ //将数字字符逆序 int i…… 题解列表 2023年11月09日 0 点赞 0 评论 118 浏览 评分:0.0
大整数减法(使用指针递减输出结果) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> #define MAXSIZE 200 int main() { char a[MA…… 题解列表 2023年10月19日 0 点赞 0 评论 90 浏览 评分:0.0
大整数减法,C++实现 摘要:# 大数减法模板 ```c++ #include #include using namespace std; bool cmp(vector &A, vector &B) { …… 题解列表 2023年07月22日 0 点赞 0 评论 156 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[201], str2[201]; scanf("%s%s…… 题解列表 2023年06月24日 0 点赞 0 评论 156 浏览 评分:9.9
发现输入用gets是错误的,要用scanf输入字符串才对 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//找最大 int max(int n,int m){ return n>m?n:m;}int ma…… 题解列表 2023年02月16日 0 点赞 0 评论 149 浏览 评分:9.9
编写题解 2842: 大整数减法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int maxmine= 210; int a[maxmine]…… 题解列表 2023年02月03日 0 点赞 1 评论 300 浏览 评分:9.9
大数减法(复杂版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,j,str1,str2,k=0; in…… 题解列表 2022年11月10日 0 点赞 0 评论 377 浏览 评分:9.9