题解 2757: 浮点数向零舍入

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

筛选

2757:强制类型转换-C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() {   float n;   scanf("%f",&n);   ……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a);     printf("%d",a);        ret……

利用整除实现高斯取整

摘要:解题思路:对浮点数进行格式强制转换为整型,而后再除1得到的结果就相当于高斯取整注意事项:参考代码:#include <stdio.h>int main() {    float a;    int b……

2757: 浮点数向零舍入

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

浮点数向零舍入(python)

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

2757: 浮点数向零舍入

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

2757: 浮点数向零舍入

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){   double n;   cin>>n;   if(n>0……