ans

wangruihao 2023-07-28 15:15:51 4 返回题目

#include<bits/stdc++.h> #define int long long using namespace std; signed main(){ int n; cin>>n; int t=n%10; if(t>=5) n+=(10-t); else n-=t; cout<<n; return 0; }

{{ vote && vote.total.up }}