题解 2757: 浮点数向零舍入

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

浮点数向零舍入(python)

摘要:解题思路:输入一个浮点数,将其转为整数。注意事项:参考代码:a=float(input())print(int(a))……

实行强行转换类型

摘要:解题思路:把浮点数赋值给整数实现强行转换注意事项:记得加括号参考代码:#include<stdio.h>int main(){ float a; scanf("%f", &a); int b = (i……

2757: 浮点数向零舍入

摘要:解题思路:强制类型转换注意事项:参考代码:#include<stdio.h>int main(){ float n = 0; scanf("%f",&n); printf("%d\n",(int) n……

2757: 浮点数向零舍入

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() {     double ……

2757: 浮点数向零舍入题解

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cmath> using namespace std; double round(double r) ……

2757:浮点数向零舍入

摘要:注意事项:参考代码:#include<stdio.h>int main(){    float a = 0;    scanf("%f",&a);    int b = 0;    b = a;   ……