NP7. 小数化整数
描述
输入描述
输入一个浮点小数。输出描述
示例1
输入:
10.1
输出:
10
Python 解法, 执行用时: 11ms, 内存消耗: 2864KB, 提交时间: 2022-08-03
n = input() print(int(n))
Python 解法, 执行用时: 11ms, 内存消耗: 2968KB, 提交时间: 2022-07-27
number=float(input()) print(int(number))
Python 解法, 执行用时: 11ms, 内存消耗: 2996KB, 提交时间: 2022-07-28
a = float(input("")) print(int(a))
Python 解法, 执行用时: 11ms, 内存消耗: 3024KB, 提交时间: 2022-07-28
a=int(input()) print(a)
Python 解法, 执行用时: 12ms, 内存消耗: 2944KB, 提交时间: 2022-08-06
print(int(float(raw_input())))