列表

详情


NP91. 小数位修正

描述

牛客网的财务同学很苦恼,各个部门提交的资料中关于金额的小数保留简直是乱七八糟,你能使用round函数,帮助财务同学将输入数字的小数位修正为四舍五入保留至最多两位小数吗?(请不要使用字符串格式化输出保留小数位)

输入描述

输入一个正小数。

输出描述

输出该小数的四舍五入保留至最多两位小数后的结果。

示例1

输入:

3.145

输出:

3.15

示例2

输入:

3.1

输出:

3.1

原站题解

Python 解法, 执行用时: 13ms, 内存消耗: 3024KB, 提交时间: 2022-08-02

n = float(input())
print(round(n, 2))

Python 3 解法, 执行用时: 38ms, 内存消耗: 4528KB, 提交时间: 2022-07-29

x= float(input())
print(round(x,2))

Python 3 解法, 执行用时: 39ms, 内存消耗: 4528KB, 提交时间: 2022-07-29

num=float(input(''))
print(round(num,2))

Python 3 解法, 执行用时: 40ms, 内存消耗: 4516KB, 提交时间: 2022-07-31

a= float(input())
print(round(a,2))

Python 3 解法, 执行用时: 40ms, 内存消耗: 4540KB, 提交时间: 2022-08-05

a = float(input())

print(round(a, 2))

上一题