上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 48 下一页
摘要: 还是挺简单的,功能过于强大。 byte short int 在计算的时候 会自动转换为 int 类型。 阅读全文
posted @ 2016-06-25 23:13 X-POWER 阅读(5013) 评论(0) 推荐(0) 编辑
摘要: 1 import urllib2,time 2 vio=0 3 f=open(r'f:\\aa.txt','w') 4 while vio" 19 ph=const.find(head,beg+20) 20 if ph==-1: 21 break 22 beg=ph 23 f.write(const[... 阅读全文
posted @ 2016-06-21 15:30 X-POWER 阅读(364) 评论(1) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; class Time // 居然 会和 库函数 重名 { ... 阅读全文
posted @ 2016-06-20 17:40 X-POWER 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 #include 11 #include 12 #include 13 #include 14 #include 15 using namespace std; 16 clas... 阅读全文
posted @ 2016-06-19 17:47 X-POWER 阅读(1392) 评论(0) 推荐(0) 编辑
摘要: 1 import time 2 global mark,sum 3 def gaosi(Q): 4 global sum,mark # 在 使用的时候防止隔离 也要声明一下 这个是全局变量 , 引用外面的值 5 sum+=Q 6 Q-=1 7 if(Q==0 or mark==1): 8 mark=1 9 else... 阅读全文
posted @ 2016-06-18 19:06 X-POWER 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 求某个大数的阶乘的位数 . 得到的值 需要 +1 得到真正的位数 阅读全文
posted @ 2016-06-14 16:18 X-POWER 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 阶乘是乘法 , 乘法的话 , 几位数*几位数的位数 就是 哪两个几位数相加 . 这个可以用log10来解决 , 所以有如下代码 . 阅读全文
posted @ 2016-06-14 15:18 X-POWER 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 求模的 都可以在 被求模数的 得到过程中 对 被求模数的 不玩整体 进行求模 , 并且得到的模值 不会改变 . 这样的话 可以解决被 求模的数 过大 计算机无法保存的情况 . 阅读全文
posted @ 2016-06-12 16:08 X-POWER 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 转相除法基于如下原理:两个整数的最大公约数等于其中较小的数和两数的相除余数的最大公约数。 51nod 上面的题型 不少 , 把这里所有的写一遍 , 温习一下 , 阅读全文
posted @ 2016-06-12 16:07 X-POWER 阅读(776) 评论(0) 推荐(0) 编辑
摘要: 求模的 都可以在 被求模数的 得到过程中 对 被求模数的 不玩整体 进行求模 , 并且得到的模值 不会改变 . 这样的话 可以解决被 求模的数 过大 计算机无法保存的情况 . 阅读全文
posted @ 2016-06-12 13:30 X-POWER 阅读(1031) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 48 下一页