题解 | #你能活多少秒#
你能活多少秒
http://www.nowcoder.com/practice/e1d1bd99fee34b66ae3c777b74d555c8
BC32 你能活多少秒
思路:
step1:输入数字;格式化输出结果;
代码如下:
n = int(input())
print('{:.0f}'.format(3.156*(10**7)*n))
你能活多少秒
http://www.nowcoder.com/practice/e1d1bd99fee34b66ae3c777b74d555c8
n = int(input())
print('{:.0f}'.format(3.156*(10**7)*n))
相关推荐