川哥的吩咐-题解(C语言代码) 摘要:```c #include #include #include #define max(a,b) a>b? a:b /* reverse:将字符串进行倒置的操作 @s:要倒置字符串的…… 题解列表 2020年07月25日 0 点赞 0 评论 437 浏览 评分:6.0
川哥的吩咐-题解(C++代码,入门做法,两个数组搞定) 摘要:解题思路:两个字符数组,两个数组可以解决问题,不涉及到大数算法。注意事项:要注意数组的设置长度,还要考虑到进位处理。参考代码:#include<iostream> #include<cstring>…… 题解列表 2020年08月16日 0 点赞 0 评论 385 浏览 评分:0.0
全在代码中了 摘要:#include <string.h> #include <stdio.h> #include <stdlib.h> #include <math.h> int main() { …… 题解列表 2021年03月05日 0 点赞 0 评论 370 浏览 评分:8.0
1392: 川哥的吩咐(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[1001], b[1001], a…… 题解列表 2021年05月05日 0 点赞 0 评论 569 浏览 评分:9.9
题解 1392: 川哥的吩咐 摘要:解题思路:大数加法就是要使用数组来存取数据,然后进行加法运算注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]=…… 题解列表 2021年10月16日 0 点赞 0 评论 282 浏览 评分:0.0
高精度加法 C++ 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> using namespace std; vector<int> add(vector<in…… 题解列表 2021年11月18日 0 点赞 0 评论 287 浏览 评分:9.9
while循环的持续输入 摘要:解题思路:注意事项:参考代码:while True: a,b=map(int,input().split()) print(a+b)…… 题解列表 2022年04月06日 0 点赞 0 评论 145 浏览 评分:9.9
用Java写这个题就是作弊 摘要:解题思路:这个题对于用Java写题目的人来说,真的太简单了;只需要包含Java中的<java.math.BigInteger>包,问题就解决一半了。注意事项:一定要包含<java.math.BigIn…… 题解列表 2022年04月20日 0 点赞 0 评论 322 浏览 评分:9.9
题解 1392: 川哥的吩咐 摘要:1•**这里是前置0的新方法,虽然代码较长,但思路清晰啊** /*------------------------------------------------------------…… 题解列表 2022年06月20日 0 点赞 0 评论 304 浏览 评分:9.9
C语言快解川哥的吩咐 摘要:解题思路:通过题目可知要多次输入,所以考虑用字符数组用字符数组以后再把字符数组通过-‘0’转化为整形数组,转化成int类型数组以后再对其进行遍历和进位后再进行输出注意事项:参考代码:#include<…… 题解列表 2023年05月21日 0 点赞 0 评论 235 浏览 评分:9.9