川哥的吩咐 (C++代码) 摘要:解题思路: 逆转字符串 → 相加 → 进位 → 逆序输出参考代码:#include<iostream> #inc 题解列表 2018年06月03日 0 点赞 0 评论 582 浏览 评分:0.0
川哥的吩咐 (Java代码)--java最简单的代码(秒杀) 摘要:解题思路:注意事项:记得导包import java.math.BigInteger;参考代码:public class 川哥的吩咐_水到不能再水 { public static void main(S…… 题解列表 2018年05月02日 0 点赞 1 评论 587 浏览 评分: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> main(){ char a[1000],b[1000],c[…… 题解列表 2018年03月07日 0 点赞 0 评论 1347 浏览 评分:0.0
川哥的吩咐 (C语言代码) 摘要:解题思路: 输入的两个大数字用字符串读入,在运算的过程中转换为int类型(通过accii码规律)。注意事项: 1、数组下标与数字高地位的关系,a[0]、b[0]表示的是a和b的最高位,而c…… 题解列表 2018年02月27日 0 点赞 0 评论 725 浏览 评分:0.0
川哥的吩咐 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int a[1001];int b[1001];int c[1002];int main(){ ch…… 题解列表 2018年02月25日 0 点赞 0 评论 709 浏览 评分:0.0
川哥的吩咐 (C++代码) 摘要:解题思路:大数加法,常规题,用java肯定最方便(毕竟现成的库在那里),在这里还是用C++写吧。字符串输入并且字符串输出,用字符串模拟加法运算的过程,从最后一位加起,用flag表示进位,每一次对应位数…… 题解列表 2018年01月05日 2 点赞 0 评论 696 浏览 评分:6.0
WU-川哥的吩咐 (C++代码) 摘要:这题要用字符串来写了额 但是处理起来比较麻烦 要处理好进位的问题 我的思路是先把进位算出来 再加到字符里面 为了防止数据溢出原有的位数 我还在两个加数的末尾加了个‘0’ 注意事项: …… 题解列表 2017年12月19日 6 点赞 0 评论 1376 浏览 评分:2.0
我美吗! 摘要:解题思路: 详见代码,不懂可以留言偶注意事项:每次循环完成后都要清空数组。参考代码://大数求和,所以必须用字符串解决计算 #include <stdio.h> #include <string…… 题解列表 2017年12月18日 3 点赞 1 评论 530 浏览 评分: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