二级C语言-同因查找-题解(Python代码)python 摘要:```python for i in range(10,1000):#1到999 if i%2==0 and i%3==0 and i%7==0:#能同时被2、3、7整除的数 …… 题解列表 2019年11月24日 0 点赞 0 评论 844 浏览 评分:6.0
二级C语言-同因查找-题解(Python代码)------直接输出42的倍数,比遍历更简洁 摘要:直接输出42的倍数,时间复杂度更低 直接输出42的倍数,时间复杂度更低 ```python for i in range(1,int(1000/42)+1): print(i*42) …… 题解列表 2020年01月17日 0 点赞 0 评论 1111 浏览 评分:9.9
编写题解 1060: 二级C语言-同因查找(python语言) 摘要:解题思路:使用循环解题注意事项:参考代码:a = 10while a<1000: if a%2==0 and a%3==0 and a%7==0: print(a) …… 题解列表 2021年07月07日 0 点赞 0 评论 145 浏览 评分:0.0
[编程入门]同因查找---for循环---(Python) 摘要:```python for i in range(10,1001): if i%2==0 and i%3==0 and i%7==0: print(i) ``` 通过…… 题解列表 2021年11月03日 0 点赞 1 评论 759 浏览 评分:9.9
这种题还需要看题解吗? 摘要:解题思路:就循环注意事项:参考代码:for i in range(10,1001): if i%2==0 and i%3==0 and i%7==0: print(i)…… 题解列表 2022年08月10日 0 点赞 0 评论 271 浏览 评分:9.9
二级C语言-同因查找--朴素方法[python] 摘要:解题思路:循环体里加入筛选条件注意事项:参考代码:for k in range(10,1001): if k%2==0 and k%3==0 and k%7==0: print(k…… 题解列表 2022年09月09日 0 点赞 0 评论 328 浏览 评分:0.0
同因查找(还行) 摘要:解题思路:注意事项:参考代码:for i in range(10,1000): if i%2==0 and i%3==0 and i%7==0: print(i) …… 题解列表 2022年12月01日 0 点赞 0 评论 80 浏览 评分:0.0
1060:同因查找(python) 摘要:解题思路:注意事项:参考代码:for i in range(10,1001): if(i%2==0 and i%3==0 and i%7==0): print(i) …… 题解列表 2023年12月09日 0 点赞 0 评论 41 浏览 评分:0.0