NP6. 牛牛的小数输出
描述
输入描述
读入一个浮点类型小数。输出描述
保留两位小数输出。示例1
输入:
1.000000
输出:
1.00
Python 解法, 执行用时: 12ms, 内存消耗: 2960KB, 提交时间: 2022-08-06
print("{:.2f}".format(float(raw_input())))
Python 解法, 执行用时: 12ms, 内存消耗: 2964KB, 提交时间: 2022-08-02
x=float(input()) print("{:.2f}".format(x))
Python 解法, 执行用时: 12ms, 内存消耗: 3040KB, 提交时间: 2022-07-27
a=input() a=float(a) a=("%.2f" %a) print(a)
Python 解法, 执行用时: 13ms, 内存消耗: 2956KB, 提交时间: 2022-08-01
n = float(input()) print("%.2f" % n)
Python 解法, 执行用时: 13ms, 内存消耗: 2976KB, 提交时间: 2022-08-05
a=input() print('%.2f'%a)