您需要 登录 才可以下载或查看,没有账号?立即注册
def cd(x): """求一个正整数的除自身外的最大约数""" count = x // 2 if not(x >= 3): print('请代入一个大于2的正整数!') else: while count-1: if x % count == 0: print('%d的最大约数为:' % x, count) break count -= 1 if count == 1: print('%d为素数' % x) cd(18) # 18的最大约数为: 9 cd(17) # 17为素数 cd(2) # 请代入一个大于2的正整数!
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)
GMT+8, 2025-1-18 07:29
Powered by Discuz! X3.4
© 2001-2023 Discuz! Team.