python优势-自带高精度 摘要:参考代码:while True: n = int(input()) if n == 0: break if n % 17 == 0:   题解列表 2024年04月23日 0 点赞 0 评论 75 浏览 评分:0.0
数字整除 (Java代码) 摘要:解题思路:我是懒人,直接Java大数,题目给的信息也没用上注意事项:参考代码:package cWeb.buleCup; import java.math.BigInteger; impo…… 题解列表 2018年06月29日 0 点赞 1 评论 260 浏览 评分:0.0
数字整除 (C++代码)大哥,这样为什么不行啊,用vs2017运行可行 摘要:解题思路:常规思路,按照题目描述注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ int len…… 题解列表 2018年02月04日 0 点赞 0 评论 1120 浏览 评分:0.0
数字整除-题解(Java代码) 摘要: import java.math.BigInteger; import java.util.Scanner; public class Main { …… 题解列表 2020年02月04日 0 点赞 0 评论 323 浏览 评分:0.0
数字整除-题解(Java代码) 摘要: import java.math.BigInteger; import java.util.Scanner; //因为输入的数据类型超过了long和Integer类型的范围,所以…… 题解列表 2019年08月17日 0 点赞 0 评论 667 浏览 评分:0.0
数字整除-题解(C语言代码) 摘要:题目: 假设a是17的倍数;b=a/10-5*a%10也是17的倍数;c=b/10-5*b%10也是17的倍数;依次类推。 #include #include #i…… 题解列表 2020年03月16日 0 点赞 0 评论 358 浏览 评分:0.0
还不会的看过来 摘要:解题思路:注意事项:参考代码:a = []while True: s = input() if s == '0': break else: …… 题解列表 2022年04月03日 0 点赞 0 评论 201 浏览 评分:0.0
数字整除-题解(C语言代码) 摘要:解题思路:1.定义一个字符来数组存放输入数据 2.输入 3.判断是否为17的倍数 &n 题解列表 2021年01月27日 0 点赞 0 评论 405 浏览 评分:0.0
数字整除 (C++代码) 摘要:解题思路:和ET大神的思路一样注意事项:参考代码:#include<iostream>#include<string.h>#include<limits.h>#include<math.h>using…… 题解列表 2019年03月23日 0 点赞 0 评论 349 浏览 评分:0.0
编写题解 1074: 数字整除 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(int argc, char *argv[]) { int n,i,g; in…… 题解列表 2021年09月23日 0 点赞 0 评论 133 浏览 评分:0.0