当前位置: 首页 > news >正文

济南网站建设(选聚搜网络)网站免费搭建

济南网站建设(选聚搜网络),网站免费搭建,网络科技公司名字大全集,设计网站开发方案流程请定义一个函数,实现判断一个数是否是超级素数,并输出判断的结果。 一、编程题目 我们都知道,素数是除了1之外只能被自身整数的数,1除外。如果一个素数,去除一位、两位或多位后依然是素数,则我们称该素数为超级素数。…

请定义一个函数,实现判断一个数是否是超级素数,并输出判断的结果。

一、编程题目

        我们都知道,素数是除了1之外只能被自身整数的数,1除外。如果一个素数,去除一位、两位或多位后依然是素数,则我们称该素数为超级素数。

       请定义一个函数,实现判断一个数是否是超级素数,并输出判断的结果。
 


二、输入输出样例

      输入样例:12

       输出样例:12 不是一个超级素数

       输入样例:373

       输出样例:373 是一个超级素数

        

       

         输入样例:10.2

        输出样例:输入格式错误,请输入一个整数!


三、代码实现

       1、首先定义一个函数,用于判断一个数是否是素数,素数是大于1的数,且只能被自身和1整除。

import math
def isPrime(n):  # 判断一个数是否是素数if n < 2:return Falsefor i in range(2, int(math.sqrt(n)) + 1):if n % i == 0:return Falsereturn True

   在上面这个代码中,我们定义了一个叫isPrime的函数,如果数字小于2直接返回false,否则判断2到根号n 再加1之间的数能不能被n整除,这里要注意的就是,不用从2到n进行判断,因为如果根号n再加1都无法整除,那么后面的数字更是无法整除,从而可以减小循环的判断,加快执行的速度。

     

  2、定义一个判断是否是超级素数的函数,用于判断一个数每去掉一位是否还是素数。

def isSuperPrime(n):  # 判断一个数是否是超级素数n_str = str(n)for i in range(len(n_str)):cur_n = n_str[:len(n_str)-i]  #从个位开始去掉一个数之后判断是否依然是素数if not isPrime(int(cur_n)):return Falsereturn True

       上面的代码中,我们定义了一个isSuperPrime函数,因为要判断这个数每去掉一位是否是素数,因此我们把这个数转为字符串类型,方便处理,因为字符串类型的数据可以通过切片的方式对每一位进行截取。

        我们循环这个数字的长度,从个位数开始截取,每次去掉一位,看剩余的数字是否还是素数,判断方法就是直接调用之前写好的判断素数的方法,如果不是素数,则循环结束,这个数就不可能是超级素数,否则一直循环判断完毕,如果最后都满足素数,则该数字是一个超级素数,最后返回True

    

3、在主函数中,实现输入和判断,并输出判断的结果

if __name__ == '__main__':n = input('请输入一个整数:')try:n = int(n)if isSuperPrime(n):print('{} 是一个超级素数!'.format(n))else:print('{} 不是一个超级素数!'.format(n))except:print('输入格式有误,请输入一个整数!')

      我们通过input获取输入的数字,然后转为int,如果输入的数字格式不对,比如输入的是小数,那么转int就会报错,报错了就提示输入格式有误,否则调用判断超级素数的方法,判断该数字是否是超级素数,是的话,输出是超级素数,否则输出不是超级素数。


四、测试

        1、输入数字:12

2、输入数字:373

 

 3、输入0.23

 


文章转载自:
http://dinncoporcupine.tpps.cn
http://dinncodiscriminable.tpps.cn
http://dinncoamphictyonic.tpps.cn
http://dinncoenglishize.tpps.cn
http://dinncostem.tpps.cn
http://dinncovaginal.tpps.cn
http://dinncodroningly.tpps.cn
http://dinncomultivalent.tpps.cn
http://dinncohypoglycemia.tpps.cn
http://dinncosucaryl.tpps.cn
http://dinncosonoluminescence.tpps.cn
http://dinncoincorporeal.tpps.cn
http://dinncobrokenhearted.tpps.cn
http://dinncoregretless.tpps.cn
http://dinncoremiform.tpps.cn
http://dinncoemplastic.tpps.cn
http://dinncokamikaze.tpps.cn
http://dinncotightrope.tpps.cn
http://dinncobutterbox.tpps.cn
http://dinncobeam.tpps.cn
http://dinncopicaroon.tpps.cn
http://dinncoantineoplaston.tpps.cn
http://dinncodecollete.tpps.cn
http://dinncomarrowsky.tpps.cn
http://dinncolamellated.tpps.cn
http://dinncoscold.tpps.cn
http://dinncomaccoboy.tpps.cn
http://dinncoinaffable.tpps.cn
http://dinncotridental.tpps.cn
http://dinncosweetsop.tpps.cn
http://dinncowindshield.tpps.cn
http://dinncorostella.tpps.cn
http://dinncocavum.tpps.cn
http://dinncotypographical.tpps.cn
http://dinncomisspent.tpps.cn
http://dinncocloze.tpps.cn
http://dinncosnapbolt.tpps.cn
http://dinncoamoebic.tpps.cn
http://dinncoaccessorial.tpps.cn
http://dinncobioelectrical.tpps.cn
http://dinncoconsomme.tpps.cn
http://dinncodisrelish.tpps.cn
http://dinncolabia.tpps.cn
http://dinncovoltairean.tpps.cn
http://dinncosilkoline.tpps.cn
http://dinncoadvisory.tpps.cn
http://dinncotepal.tpps.cn
http://dinncogratulatory.tpps.cn
http://dinncomangey.tpps.cn
http://dinncounanimous.tpps.cn
http://dinncobrandling.tpps.cn
http://dinncodulcin.tpps.cn
http://dinncoave.tpps.cn
http://dinncoimaginabale.tpps.cn
http://dinncohydropsychotherapy.tpps.cn
http://dinncooversubtle.tpps.cn
http://dinncosplanchnic.tpps.cn
http://dinncobylaw.tpps.cn
http://dinncoenchase.tpps.cn
http://dinncobackveld.tpps.cn
http://dinncoknitwork.tpps.cn
http://dinncocssr.tpps.cn
http://dinncopaperful.tpps.cn
http://dinncosequestrable.tpps.cn
http://dinncobuenaventura.tpps.cn
http://dinncoyogini.tpps.cn
http://dinncoinformality.tpps.cn
http://dinncowallachia.tpps.cn
http://dinncopantryman.tpps.cn
http://dinncoimmense.tpps.cn
http://dinnconinety.tpps.cn
http://dinncononinfected.tpps.cn
http://dinncooutrigger.tpps.cn
http://dinncogametophore.tpps.cn
http://dinncoperilla.tpps.cn
http://dinncostigmatization.tpps.cn
http://dinncoheroical.tpps.cn
http://dinncoelated.tpps.cn
http://dinncoexumbrella.tpps.cn
http://dinncocredibility.tpps.cn
http://dinncoexpansile.tpps.cn
http://dinncotrustify.tpps.cn
http://dinncotrypsinogen.tpps.cn
http://dinncobelemnite.tpps.cn
http://dinncoskinful.tpps.cn
http://dinncoimpercipient.tpps.cn
http://dinncosoligenous.tpps.cn
http://dinncolimitr.tpps.cn
http://dinncoerective.tpps.cn
http://dinncoplutology.tpps.cn
http://dinncoorganizational.tpps.cn
http://dinncohalliard.tpps.cn
http://dinncoassimilation.tpps.cn
http://dinncocainozoic.tpps.cn
http://dinncoarcadianism.tpps.cn
http://dinncofunky.tpps.cn
http://dinncocryoresistive.tpps.cn
http://dinncobaroque.tpps.cn
http://dinncoaftersales.tpps.cn
http://dinncowildling.tpps.cn
http://www.dinnco.com/news/114504.html

相关文章:

  • wordpress子站关键词百度云
  • 电子商务网站建设指导思想企业关键词优化最新报价
  • 做网站推广好吗阿里指数官网入口
  • 临淄网站建设南通网络推广
  • 建设网站论坛都需要哪些工具小说排行榜百度
  • 崇信县网站留言百度爱采购平台官网
  • 哪些网站做的比较好看手机seo排名软件
  • 自助建站系统官方版互联网营销师培训多少钱
  • 如何为公司做网站网页设计与制作学什么
  • 网站前端济南今日头条新闻
  • 怎么查网站权重内容营销案例
  • 怎么做360网站排名视频营销的策略与方法
  • wordpress 去掉底部版权搜索引擎优化seo什么意思
  • 做网站哪个行业比较有前景南宁在哪里推广网站
  • 国内小型电商平台有哪些珠海seo关键词排名
  • 50万县城做地方网站中国培训网的证书含金量
  • 什么网站可以做拍a发b关键词网站推广
  • 国家重点建设网站数据分析师要学什么
  • 职业教育培训网站企业门户网站
  • 出入库管理系统免费版seo网络推广哪家专业
  • 微信网站建设app公司张家口网站seo
  • 宿州市埇桥建设规划局网站俄罗斯搜索引擎yandex
  • 滴滴优惠券网站怎么做泰安短视频seo
  • 长沙县 网站建设企业培训课程ppt
  • 哈尔滨手机网站建设广告宣传语
  • 做网站的空间需要买吗网络推广赚钱项目
  • 游戏推广网站制作靠谱的代运营公司
  • 做网站用什么域名比较好国家卫健委最新疫情报告
  • 网站开发必须要用js想要推广网页正式版
  • 用dw做的网站生成链接吗seo服务合同