数字整除-题解(Python代码) 摘要:#### 虽然繁琐,但是简单明了,代码呈上!! ```python n = list(input()) num_lis = [] while int(n[0]) != 0: #数据输入 …… 题解列表 2021年01月22日 0 点赞 0 评论 336 浏览 评分:9.9
终于做出来了 摘要:```c #include #include #include int divisor, count = 3; int main(void) { int caculate(char* …… 题解列表 2023年02月13日 0 点赞 0 评论 128 浏览 评分:9.9
啊啊啊!我终于写出来了,奶奶的老是细节出问题。 摘要:解题思路:将长整数以字符串形式处理,大概思路就是将字符串最后一位乘5消去,一直递减到只剩三位数再判断是否是17的倍数。注意事项:参考代码:#include <iostream>using namesp…… 题解列表 2022年03月31日 0 点赞 0 评论 294 浏览 评分:9.9
JakeLin-1074题-数字整除-题解(C++代码)-大数取余 摘要:```cpp #include #include #include using namespace std; const int maxn = 100 + 20; char s[maxn]…… 题解列表 2020年03月31日 0 点赞 0 评论 1055 浏览 评分:9.9
按照题目意思强行做的方法(我他妈菜呐) 摘要:解题思路:用一个字符串存储输入的大数,然后按照题目意思进行递归即可注意事项:这道题做了接近一天,一直改,唉我太菜了。参考代码:#include <iostream>#include <stdio.h>…… 题解列表 2021年10月25日 0 点赞 0 评论 574 浏览 评分:9.9
调用函数及封装性解题 摘要:解题思路:def f(a): b=(a%10)*5 a=a//10 if (a-b)%17==0: print("1") else:print("0")while…… 题解列表 2024年11月27日 0 点赞 0 评论 111 浏览 评分:9.9
使用Java的BigInteger类迅速解决整除问题 摘要:BigInteger 类是java提供的用于大整数(可以超过long类型范围)计算的类 构造方法:public BigInteger(String val) 获取指定的大整数 常用方法…… 题解列表 2024年03月03日 0 点赞 0 评论 228 浏览 评分:9.9
数字整除按照题目步骤做 摘要:import java.math.BigInteger; import java.util.Scanner; public class Dome05 { public static v…… 题解列表 2023年04月10日 0 点赞 0 评论 179 浏览 评分:9.9
1074: 数字整除 摘要:```cpp #include #include using namespace std; int main() { char m[1050]; int h; …… 题解列表 2022年08月17日 0 点赞 0 评论 180 浏览 评分:9.9
模拟数字整除 摘要: 整除问题是很简单的问题,但是这题又有不简单的地方。n的取值范围很大,超过了long long类型,那么我们应该考虑字符串类型了。 string str1; while(cin>>…… 题解列表 2024年03月17日 0 点赞 0 评论 179 浏览 评分:9.9