30分 求助!

B2016 浮点数向零舍入

1301731qwe @ 2024-06-08 12:38:59


by 1301731qwe @ 2024-06-08 12:40:10

#include<bits/stdc++.h>
using namespace std;
int main(){
    int n;
    cin>>n;
    if(n>0){
        cout<<n/1; 
        }else{
            cout<<n/1+1;
        } 
    return 0;
}

by 1301731qwe @ 2024-06-08 12:41:24

在线等 急!


by renzhanwen @ 2024-06-08 12:56:00

@1301731qwe

#include<bits/stdc++.h>
using namespace std;
long long n;
int main()
{
    cin>>n;
    cout<<n;
    return 0;
}

by zhaoqiyou @ 2024-06-08 12:58:07

@1301731qwe n已经是整型了


by lpsz2024wcs @ 2024-06-08 13:05:15

@1301731qwe
不用判定,可以直接输出
而且数据范围 -10^{15}\le x\le 10^{15} ,超出 \textrm{int} 的数据范围(用 \textrm{int} 只有80分),应该用 \textrm{long long}


by 1301731qwe @ 2024-06-10 15:10:24

@syex_renzhanwen 已AC 谢谢


|