#用户在键盘上输入一个自然数n,然后在区间[1, 5n]上随机生成n个不重复的自然数,输出这些自然数,# 然后继续编写代码对这些自然数进行处理,只保留所有偶数,并输出这些偶数import randomn=int(input("请输入整数"))shu=set()i=0while True: num=random.choice(range(1,5*n+1))#生成随机数 shu.add(num) if len(shu)==n: breakprint("n个不重复的随机数是:",shu)oShu=list(shu)#将集合变成数列,方便进行偶数判断print("偶数是:",end="")for i in oShu: if i%2==0: print(i,end=" ")
原文地址:https://www.cnblogs.com/w331842/p/12537229.html
时间: 2025-01-09 22:40:23