1074: 数字整除 - Python 摘要:解题思路: 1、将输出的字符作为string类型,不转变为int. 2、将输入的数字(string类型)利用list()转变为数组,利用切片得到对应的数组。 3、将数组转为int,进…… 题解列表 2023年10月24日 0 点赞 0 评论 64 浏览 评分:0.0
1074: 数字整除 摘要:解题思路:注意事项:参考代码:while True: try: m = input() if int(m) == 0: &n 题解列表 2022年01月16日 0 点赞 0 评论 108 浏览 评分:0.0
数字整除-题解(Python代码) 摘要:这种贼大的数,还是Python来的快且简单。。。。 ```python while True: num = int(input()) if num == 0: …… 题解列表 2020年04月18日 0 点赞 0 评论 320 浏览 评分:0.0
1074: 数字整除 摘要:```python n = int(input()) #初始值 while n!=0: #n = 0 时停止 lest = n//10 if (lest-(n%10)…… 题解列表 2023年12月20日 0 点赞 0 评论 67 浏览 评分:0.0
还不会的看过来 摘要:解题思路:注意事项:参考代码:a = []while True: s = input() if s == '0': break else: …… 题解列表 2022年04月03日 0 点赞 0 评论 201 浏览 评分:0.0
python优势-自带高精度 摘要:参考代码:while True: n = int(input()) if n == 0: break if n % 17 == 0:   题解列表 2024年04月23日 0 点赞 0 评论 75 浏览 评分: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
数字整除-题解(Python代码) 摘要:解题思路:没什么难点,注意利用好py的切片机制。注意事项:参考代码:while(1): str=input() if(str[0]=='0'…… 题解列表 2021年02月06日 0 点赞 0 评论 158 浏览 评分:0.0
数字整除-题解(Python代码) 摘要: def Check(number): get_last = number % 10 number = number // 10 answe…… 题解列表 2020年03月02日 0 点赞 0 评论 395 浏览 评分:0.0
分类讨论注意初始参数还原为0 摘要:解题思路:利用while循环实现持续输入,在有题目条件写出判断式子注意事项:参考代码:while True: n=int(input()) if n==0: break …… 题解列表 2022年04月01日 0 点赞 0 评论 123 浏览 评分:0.0