1074数字整除(数学除法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char arr[200]; while(scanf("%s",arr)!=EOF) { if(arr[0]=…… 题解列表 2024年05月26日 0 点赞 0 评论 219 浏览 评分:9.9
数字整除-题解(C语言描述(这是算法题,比的是解决方案)) 摘要:```c #include #include int main() { char num[101]; while (scanf("%s", num) != EOF && …… 题解列表 2020年02月08日 0 点赞 12 评论 1006 浏览 评分:9.9
数字整除-题解(Java代码)容易理解 摘要:大家能看懂的话给个好评吧! import java.util.Scanner; import java.math.BigInteger;//导入BigInteger包 public c…… 题解列表 2020年02月27日 0 点赞 0 评论 658 浏览 评分:9.9
每天2道程序题的纯小白写的代码(我觉得好详细)(模拟题里思路) 摘要:解题思路:思路就是题里的思路,一直减,然后除17我就是直接模拟题里的要求,尽管会很麻烦,但是我觉得还是挺好的注意事项:参考代码:#include<stdio.h> #include<string.h…… 题解列表 2023年05月31日 0 点赞 2 评论 117 浏览 评分: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 评论 1056 浏览 评分:9.9
1074: 数字整除 摘要: #include #include using namespace std; int main() { string s; in…… 题解列表 2022年10月06日 0 点赞 0 评论 299 浏览 评分:9.9
1074: 数字整除(拿50分就够了) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<cmath>using namespace std;int main(){ …… 题解列表 2024年03月15日 0 点赞 0 评论 139 浏览 评分:9.9
数字整除 (C++代码) 摘要:解题思路:看题目数据范围,肯定是大数啦,用字符数组读取,然后再减去‘0’就是对应的数字了。然后把每个得到的数字对17取余,余数*10到加到下一位,继续取余,最后直接判断余数是否为0就OK了。注意事项:…… 题解列表 2018年07月24日 0 点赞 1 评论 1275 浏览 评分:9.9
大数当小数对待,清晰易懂(21行代码)-题解(C语言代码) 摘要:##### 本文参考的是作者为“ET”的大神的思路: ###### 原文链接:https://blog.dotcpp.com/a/1782 他是用do-while实现的,在大佬的解答中,存在一个小…… 题解列表 2020年05月02日 0 点赞 8 评论 1043 浏览 评分:9.9
1074: 数字整除 摘要:解题思路:(1)一开始的思路是写一个大整数类,重载 '-' 和 '/' 运算符,然后按照题目来。但这属于大炮打蚊子了。(2)然后看了优质题解发现,题目给的判断原理似乎并…… 题解列表 2022年04月17日 0 点赞 0 评论 233 浏览 评分:9.9