博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
欧拉项目python代码(12--)
阅读量:4987 次
发布时间:2019-06-12

本文共 652 字,大约阅读时间需要 2 分钟。

第12题:

拥有超过500个因数的第一个三角数(1+2+3+4+......)

def findivisionnum(num):    count = 0    n=1    import math    while count

第14题:

def findlength(n):    count = 0    while n!=1:        if not n%2:            n /=2            count +=1        else:            n =3*n+1            count +1    countcopy=count    count=0    return countcopydef lengthmax(num):    i=1    max_count=1    max_number=0    while i<=num:        if max_count

第15题:

def findsum1(num1):    root=1    for i in range(1,2*num+1):        root *= i    for i in range(1,num+1):        root /= i        root /= i    return rootprint findrout(20)

转载于:https://www.cnblogs.com/fei-hsueh/p/3997007.html

你可能感兴趣的文章
支持触屏的jQuery轮播图插件
查看>>
差一点搞混了Transactional注解
查看>>
javascript基本函数
查看>>
前端公共库cdn服务推荐//提高加载速度/节省流量
查看>>
snprintf 返回值陷阱 重新封装
查看>>
asp.net GridView多行表头的实现,合并表头
查看>>
C#套打
查看>>
PolyCluster: Minimum Fragment Disagreement Clustering for Polyploid Phasing 多聚类:用于多倍体的最小碎片不一致聚类...
查看>>
【每日进步】July 2012
查看>>
327 作业
查看>>
sql 取汉字首字母
查看>>
bzoj4034: [HAOI2015]树上操作(树剖)
查看>>
${sessionScope.user}的使用方法
查看>>
WCF开发框架形成之旅---结合代码生成工具实现快速开发
查看>>
Spring事务管理
查看>>
linux下mysql配置文件my.cnf详解
查看>>
SublimeText快捷键操作
查看>>
Python开发 基礎知識 (未完代補)
查看>>
08ssm三大框架整合以前步骤
查看>>
R语言学习笔记之八
查看>>