题解 1074: 数字整除

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1074: 数字整除 - Python

摘要:解题思路:    1、将输出的字符作为string类型,不转变为int.    2、将输入的数字(string类型)利用list()转变为数组,利用切片得到对应的数组。    3、将数组转为int,进……

1074: 数字整除

摘要:解题思路:注意事项:参考代码:while True:     try:         m = input()         if int(m) == 0:       &n

数字整除-题解(Python代码)

摘要:这种贼大的数,还是Python来的快且简单。。。。 ```python while True: num = int(input()) if num == 0: ……

1074: 数字整除

摘要:```python n = int(input()) #初始值 while n!=0: #n = 0 时停止 lest = n//10 if (lest-(n%10)……

还不会的看过来

摘要:解题思路:注意事项:参考代码:a = []while True:    s = input()    if s == '0':        break    else:       ……

python优势-自带高精度

摘要:参考代码:while True:     n = int(input())     if n == 0:         break     if n % 17 == 0:  

数字整除(python代码)

摘要:def judge(x):     c = len(x)     x = list(x)     e = int(x[c-1])     del(x[c-1])     x = '&

数字整除-题解(Python代码)

摘要:解题思路:没什么难点,注意利用好py的切片机制。注意事项:参考代码:while(1):             str=input()         if(str[0]=='0&#39……

分类讨论注意初始参数还原为0

摘要:解题思路:利用while循环实现持续输入,在有题目条件写出判断式子注意事项:参考代码:while True:    n=int(input())    if n==0:        break   ……