用高精度除于低精度,求余数是否为0 摘要:解题思路:高精度除低精度 ,要运用小学教的除法运算思路,用flag标记是否有因子输出,如无,则输出none注意事项:参考代码:#include<stdio.h> #include<string.h>i…… 题解列表 2023年02月17日 0 点赞 1 评论 378 浏览 评分:9.0
2844: 大整数的因子 摘要:解题思路:定义一个flag注意事项:参考代码:n = int(input())a = Truefor i in range(2, 10): if n % i == 0: print…… 题解列表 2024年01月14日 0 点赞 0 评论 193 浏览 评分:9.9
大整数的因子 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdlib.h> #include <stdio.h> using namespace std; …… 题解列表 2024年08月16日 0 点赞 0 评论 216 浏览 评分:9.9
对题2844:数组之间的转化以及数组计算 摘要:解题思路:首先,需要定义一个字符数组,用于输入大整数,并将其储存在数组中;然后再定义一个整型数组,利用ASCII码之间的关系,将字符数组中每个元素减轻‘0’,即可将输入的整数储存在数组中,用来进行后续…… 题解列表 2024年09月14日 0 点赞 0 评论 307 浏览 评分:9.9
大数据因子 带解题思路 摘要:解题思路:注意事项:参考代码:c = int(input()) #输入数据k = [2, 3, 4, 5, 6, 7, 8, 9] #定义K…… 题解列表 2023年12月08日 0 点赞 0 评论 293 浏览 评分:9.9
大整数的因子 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; i…… 题解列表 2023年11月21日 0 点赞 0 评论 261 浏览 评分:9.9
大整数除法java 摘要:解题思路:注意事项:参考代码:import java.math.BigDecimal;import java.util.Scanner;public class Main { public st…… 题解列表 2023年04月17日 0 点赞 0 评论 249 浏览 评分:9.9
大整数的因子 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;import java.math.BigInteger;public class Main {public static…… 题解列表 2025年05月29日 1 点赞 0 评论 131 浏览 评分:10.0