C语言训练-素数问题-题解(Python代码) 摘要:```python while True: num = int(input()) for i in range(2,num):#判断在num之前的数能不能把num整除 …… 题解列表 2020年02月20日 0 点赞 1 评论 383 浏览 评分:9.9
编写题解 1143: C语言训练-素数问题 摘要:解题思路:注意事项:参考代码:n = int(input())if n ==2: print(1)elif n <2: print(0)else: for i in range(2,…… 题解列表 2021年12月18日 0 点赞 0 评论 140 浏览 评分:0.0
混个经验值 摘要:解题思路:............................注意事项:参考代码:num=eval(input()) a=0 for i in range(2,num): if nu…… 题解列表 2022年10月26日 0 点赞 0 评论 123 浏览 评分:0.0
C语言训练-素数问题-题解(python) 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(2,n//2+1): if n == 2: print('1') …… 题解列表 2021年10月20日 0 点赞 1 评论 142 浏览 评分:0.0
太乱了太乱了这个else和谁一堆啊 摘要:解题思路:注意事项:按照之前的那个思路写是没有问题没错,但是不知道为什么还是有点奇怪这个倒是还好,还是那个else参考代码:https://blog.dotcpp.com/a/77018 i=int(…… 题解列表 2022年05月29日 0 点赞 0 评论 128 浏览 评分:0.0
素数问题python 摘要:解题思路:注意事项:参考代码:n = int(input())if n == 1: print(0)else: flag = 1 for j in range(2,n//2+1): …… 题解列表 2021年06月17日 0 点赞 0 评论 284 浏览 评分:0.0