码迷,mamicode.com
首页 > 其他好文 > 详细

Problem 16

时间:2019-06-02 11:47:59      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:lin   with   hat   and   for   txt   with open   等于   git   

Problem 16

pow(2, 15) = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.
2的15次方等于32768,而这些数字(3+2+7+6+8)的和为26
What is the sum of the digits of the number pow(2, 1000)?
2的1000次方的位数之和为多少?
import math

power = math.pow(2, 1000)
sum_of_digits = 0
with open(power_of_two.txt, w) as f:
    print(%d % power, file=f)
with open(power_of_two.txt) as f:
    for line in f:
        for c in line:
            try:
                sum_of_digits += int(c)
            except:
                pass

print(sum_of_digits)

 



Problem 16

标签:lin   with   hat   and   for   txt   with open   等于   git   

原文地址:https://www.cnblogs.com/noonjuan/p/10962302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!