题解 1060: 二级C语言-同因查找

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

筛选

1060:同因查找(python)

摘要:解题思路:注意事项:参考代码:for i in range(10,1001):    if(i%2==0 and i%3==0 and i%7==0):        print(i)    ……

同因查找(还行)

摘要:解题思路:注意事项:参考代码:for i in range(10,1000):    if i%2==0 and i%3==0 and i%7==0:        print(i)    ……

这种题还需要看题解吗?

摘要:解题思路:就循环注意事项:参考代码:for i in range(10,1001):     if i%2==0 and i%3==0 and i%7==0:         print(i)……