题解 1392: 川哥的吩咐

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

筛选

清晰高精度数字加法

摘要:解题思路:注意事项:参考代码://高精度数字相加#include#includechar n[1001], m[1001];int a[1001], b[1001], c[1001];int main……

C语言快解川哥的吩咐

摘要:解题思路:通过题目可知要多次输入,所以考虑用字符数组用字符数组以后再把字符数组通过-‘0’转化为整形数组,转化成int类型数组以后再对其进行遍历和进位后再进行输出注意事项:参考代码:#include<……

高精度加法 C++

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> using namespace std; vector<int> add(vector<in……

题解 1392: 川哥的吩咐

摘要:解题思路:大数加法就是要使用数组来存取数据,然后进行加法运算注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]=……

1392: 川哥的吩咐(C语言)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() {     char a[1001], b[1001], a……

全在代码中了

摘要:#include <string.h> #include <stdio.h> #include <stdlib.h> #include <math.h> int main() {  ……