数字整除-题解(Java代码) 摘要: import java.math.BigInteger; import java.util.Scanner; //因为输入的数据类型超过了long和Integer类型的范围,所以…… 题解列表 2019年08月17日 0 点赞 0 评论 667 浏览 评分:0.0
python简单易懂 摘要:解题思路:注意事项:参考代码:while True: try: n = int(input()) if n!=0: c = n%10 …… 题解列表 2024年02月08日 0 点赞 0 评论 52 浏览 评分:0.0
数字整除 C语言 题目定理计算 mirage记录 摘要:解题思路按照题上说的方案,个位数字去掉,再从余下的数中减去个位数的5倍,,来做的。做完看了别人的题解,发现别人的方法更简单。想了想还是发出来,题上方法的代码实现,记录一下。参考代码:#include<…… 题解列表 2018年08月05日 18 点赞 0 评论 847 浏览 评分:0.0
数字整除 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; const int M=100+5; char…… 题解列表 2018年04月15日 0 点赞 0 评论 936 浏览 评分:0.0
分类讨论注意初始参数还原为0 摘要:解题思路:利用while循环实现持续输入,在有题目条件写出判断式子注意事项:参考代码:while True: n=int(input()) if n==0: break …… 题解列表 2022年04月01日 0 点赞 0 评论 123 浏览 评分:0.0
数字整除-题解(C语言代码) 摘要:>有什么好的建议呢? ## 题目描述 定理:把一个至少两位的正整数的个位数字去掉,再从余下的数中减去个位数的5倍。当且仅当差是17的倍数时,原数也是17的倍数 。 例如,34是17的倍数,因…… 题解列表 2020年02月08日 0 点赞 0 评论 794 浏览 评分:0.0
我用的是二维数组来做,感觉应该要好理解一点 摘要:#include<stdio.h> int main() { int i=0,j,sum=0,t; char str[10][200]; do …… 题解列表 2018年04月21日 1 点赞 0 评论 1006 浏览 评分:0.0
数字整除-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char num[1001]; do { gets(num); if (num[0] == '0&…… 题解列表 2020年12月14日 0 点赞 0 评论 182 浏览 评分:0.0
数字整除 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int chartoint(char s[]) { char *p,*q; char temp; …… 题解列表 2017年07月25日 0 点赞 0 评论 958 浏览 评分:0.0
数字整除-题解(C语言代码) 摘要: #include #include void mod17(char *a,int len){ int c,d,j,flag=0; if(…… 题解列表 2019年12月18日 0 点赞 0 评论 389 浏览 评分:0.0