数字整除 (C语言代码) 摘要:解题思路:根据题目要求来写就行了(我写的具体要求可能和题目的有点偏差)注意事项:参考代码:#include <stdio.h>void main(){ int n; //输入的数 i…… 题解列表 2017年12月03日 0 点赞 2 评论 524 浏览 评分:2.0
大数整除:竖式法计算 摘要: ![](/image_editor_upload/20230322/20230322074207_40314.png) #include #include #include …… 题解列表 2023年03月22日 0 点赞 0 评论 114 浏览 评分:0.0
数字整除 (Java代码)(BigInteger处理) 摘要:解题思路:import java.math.BigInteger; import java.util.Scanner; public class C1074 { public static…… 题解列表 2018年03月24日 2 点赞 1 评论 805 浏览 评分:0.0
数字整除-题解(Python代码) 摘要:解题思路:没什么难点,注意利用好py的切片机制。注意事项:参考代码:while(1): str=input() if(str[0]=='0'…… 题解列表 2021年02月06日 0 点赞 0 评论 157 浏览 评分: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
数字整除(python代码) 摘要:def judge(x): c = len(x) x = list(x) e = int(x[c-1]) del(x[c-1]) x = '& 题解列表 2023年01月12日 0 点赞 0 评论 58 浏览 评分:0.0
数字整除 (Java代码) 摘要:解题思路:大整数解决思路注意事项:直接上代码,注意事项将在代码中注释参考代码:import java.math.BigInteger; import java.util.Scanner; pu…… 题解列表 2019年05月23日 0 点赞 0 评论 372 浏览 评分:0.0
python简单易懂 摘要:解题思路:注意事项:参考代码:while True: try: n = int(input()) if n!=0: c = n%10 …… 题解列表 2024年02月08日 0 点赞 0 评论 52 浏览 评分:0.0
数字整除-题解(C++代码) 摘要:#### 解题思路 通过字符串处理降低取模运算时间复杂度,本题直接将数据转换到两位数进行取模运算,极大地缩短程序运行时间。 ```cpp #include #include #i…… 题解列表 2020年11月19日 0 点赞 0 评论 339 浏览 评分:0.0
数字整除 (Java代码) 摘要:解题思路:我是懒人,直接Java大数,题目给的信息也没用上注意事项:参考代码:package cWeb.buleCup; import java.math.BigInteger; impo…… 题解列表 2018年06月29日 0 点赞 1 评论 260 浏览 评分:0.0