题解 1392: 川哥的吩咐.......... 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){char num1[100],num2[100];wh…… 题解列表 2025年01月19日 0 点赞 0 评论 31 浏览 评分:0.0
清晰高精度数字加法 摘要:解题思路:注意事项:参考代码://高精度数字相加#include#includechar n[1001], m[1001];int a[1001], b[1001], c[1001];int main…… 题解列表 2023年12月13日 0 点赞 3 评论 131 浏览 评分: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
题解 1392: 川哥的吩咐 摘要:解题思路:大数加法就是要使用数组来存取数据,然后进行加法运算注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]=…… 题解列表 2021年10月16日 0 点赞 0 评论 282 浏览 评分:0.0
1392: 川哥的吩咐(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[1001], b[1001], a…… 题解列表 2021年05月05日 0 点赞 0 评论 568 浏览 评分:9.9
全在代码中了 摘要:#include <string.h> #include <stdio.h> #include <stdlib.h> #include <math.h> int main() { …… 题解列表 2021年03月05日 0 点赞 0 评论 370 浏览 评分:8.0
川哥的吩咐-题解(C语言代码) 摘要:```c #include #include #include #define max(a,b) a>b? a:b /* reverse:将字符串进行倒置的操作 @s:要倒置字符串的…… 题解列表 2020年07月25日 0 点赞 0 评论 436 浏览 评分:6.0
川哥的吩咐-题解(C语言代码) 摘要: #include #include int main() { char a[1001],b[1001],c[1002]; wh…… 题解列表 2020年02月16日 0 点赞 0 评论 341 浏览 评分:0.0
川哥的吩咐-题解(C语言代码) 摘要: #include #include int main() { char x[1000],y[1000],z[1000]={0},x0[1000]…… 题解列表 2020年02月04日 0 点赞 0 评论 327 浏览 评分:0.0