川哥的吩咐 (C语言代码)本着追大连交通大学的故事番,来简单解答一波!!! 摘要:解题思路:因为任何整形包括long long都不可能存储超过1000位的数字,所以,我们只能用字符数组一个数字一个数字的存储。 相加过程参考以前小学老师讲的,1,先从右到左对齐,…… 题解列表 2019年04月22日 0 点赞 0 评论 866 浏览 评分:0.0
川哥的吩咐-题解(C语言代码) 摘要: #include #include int main() { char a[1001],b[1001],c[1002]; wh…… 题解列表 2020年02月16日 0 点赞 0 评论 341 浏览 评分:0.0
川哥的吩咐 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int ans,s; char c[100…… 题解列表 2018年10月13日 0 点赞 0 评论 393 浏览 评分:0.0
川哥的吩咐 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char a1[100][1000],b1[100][1000]…… 题解列表 2017年10月22日 0 点赞 0 评论 803 浏览 评分:0.0
川哥的吩咐 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int Ri(int n, int m);int main(){ int a, s; while (scanf("%d %d", &a…… 题解列表 2018年04月29日 0 点赞 0 评论 440 浏览 评分:0.0
川哥的吩咐 (C语言代码) 摘要:#include<stdio.h>#include<string.h>int main(){ char a[1001],b[1001],c[1000]; int la,lb,i,j; …… 题解列表 2017年12月06日 0 点赞 0 评论 615 浏览 评分:0.0
川哥的吩咐 (C语言代码) 摘要:#include "stdafx.h"#include "string.h"#define max 1000void reverse(int len, char a[]){ int i,t; …… 题解列表 2018年10月31日 0 点赞 0 评论 460 浏览 评分:0.0
川哥的吩咐-题解(C++代码,入门做法,两个数组搞定) 摘要:解题思路:两个字符数组,两个数组可以解决问题,不涉及到大数算法。注意事项:要注意数组的设置长度,还要考虑到进位处理。参考代码:#include<iostream> #include<cstring>…… 题解列表 2020年08月16日 0 点赞 0 评论 385 浏览 评分:0.0
川哥的吩咐 (C++代码) 摘要:解题思路: 逆转字符串 → 相加 → 进位 → 逆序输出参考代码:#include<iostream> #inc 题解列表 2018年06月03日 0 点赞 0 评论 583 浏览 评分:0.0
川哥的吩咐 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void f(char *a,char *b,int *aa,int *bb,int *ans)…… 题解列表 2019年01月20日 0 点赞 0 评论 319 浏览 评分:0.0