川哥的吩咐 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int a[1001];int b[1001];int c[1002];int main(){ ch…… 题解列表 2018年02月25日 0 点赞 0 评论 806 浏览 评分:0.0
川哥的吩咐 (C语言代码) 摘要:解题思路: 输入的两个大数字用字符串读入,在运算的过程中转换为int类型(通过accii码规律)。注意事项: 1、数组下标与数字高地位的关系,a[0]、b[0]表示的是a和b的最高位,而c…… 题解列表 2018年02月27日 0 点赞 0 评论 772 浏览 评分:0.0
哈哈 (C语言代码) 摘要:解题思路:话不多说看注释注意事项:有不懂的可评论问题参考代码:#include<stdio.h>#include<string.h> main(){ char a[1000],b[1000],c[…… 题解列表 2018年03月07日 0 点赞 0 评论 1459 浏览 评分: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 评论 536 浏览 评分:0.0
川哥的吩咐 (Java代码)--java最简单的代码(秒杀) 摘要:解题思路:注意事项:记得导包import java.math.BigInteger;参考代码:public class 川哥的吩咐_水到不能再水 { public static void main(S…… 题解列表 2018年05月02日 0 点赞 1 评论 655 浏览 评分:0.0
momoc:题解1513:蓝桥杯算法提高VIP-大数加法 (C语言代码)附题解 摘要:解题思路:1.用字符串保持输入的数 2.对输入的字符串进行逆序并转换成数组保持到整数数组 3.对数组相加对相加后的数进行取模,并把进位的数保…… 题解列表 2018年08月02日 6 点赞 0 评论 1169 浏览 评分:0.0
川哥的吩咐 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int ans,s; char c[100…… 题解列表 2018年10月13日 0 点赞 0 评论 451 浏览 评分:0.0
川哥的吩咐 (C语言代码) 摘要:解题思路:由于是大数,所以只能用字符串保存输入的内容,然后逆序,然后再相加,再考虑进位。本题中用字符数组a,b保存输入的两个数,逆序后相加保存到整型数组c中,最后考虑进位情况。注意事项:注意最后一次是…… 题解列表 2018年10月17日 0 点赞 0 评论 606 浏览 评分: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 评论 520 浏览 评分: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 评论 413 浏览 评分:0.0