调用函数及封装性解题 摘要:解题思路:def f(a): b=(a%10)*5 a=a//10 if (a-b)%17==0: print("1") else:print("0")while…… 题解列表 2024年11月27日 0 点赞 0 评论 111 浏览 评分:9.9
大数Python写 摘要:参考代码:while True: n=int(input()) if n==0: break else: if n%17==0: 题解列表 2024年10月17日 0 点赞 0 评论 68 浏览 评分: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简单易懂 摘要:解题思路:注意事项:参考代码:while True: try: n = int(input()) if n!=0: c = n%10 …… 题解列表 2024年02月08日 0 点赞 0 评论 52 浏览 评分:0.0
1074: 数字整除 摘要:```python n = int(input()) #初始值 while n!=0: #n = 0 时停止 lest = n//10 if (lest-(n%10)…… 题解列表 2023年12月20日 0 点赞 0 评论 66 浏览 评分:0.0
1074数字整除(无脑四行版) 摘要:提问:直接对17求余可以吗? ```python while True: n = int(input()) if n == 0: break else:print('…… 题解列表 2023年12月06日 0 点赞 0 评论 171 浏览 评分:9.9
1074: 数字整除 - Python 摘要:解题思路: 1、将输出的字符作为string类型,不转变为int. 2、将输入的数字(string类型)利用list()转变为数组,利用切片得到对应的数组。 3、将数组转为int,进…… 题解列表 2023年10月24日 0 点赞 0 评论 63 浏览 评分:0.0
有点浪费时间,不过稳定通过 摘要:参考代码:def fun(n): min_num=int(n[-1]) n=list(n) del n[-1] new_n='' for i in n: …… 题解列表 2023年04月25日 0 点赞 0 评论 154 浏览 评分:9.9
数字整除——17的倍数 摘要:解题思路:不知道为什么,老是报错说是输入有问题,可能不能用input()吧,参考了一下其他作者的代码,终于成功了,我是新手,还有好多东西不懂,慢慢来,发个题解记录一下吧注意事项:1、那个sys.std…… 题解列表 2023年03月17日 0 点赞 0 评论 82 浏览 评分:0.0
1074基础解法(Python) 摘要:注意事项:sys.stdin会读取到'\n'换行符参考代码:import sysfor line in sys.stdin : if int(line) == 0 : …… 题解列表 2023年01月12日 0 点赞 0 评论 184 浏览 评分:9.9