列表

详情


NP7. 小数化整数

描述

日常生活中我们会遇到很多小数,但是有的人不喜欢小数,因此会用四舍五入的方式将其去掉。在Python中我们更加简单,可以利用强制类型转换将小数转变成整数,请你试一试。

输入描述

输入一个浮点小数。

输出描述

输出将其强制类型转换为int后的结果。

示例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())))

上一题