题目传送门
代码:
#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n%2) n++; cout<<n/2; return 0; }
求助!!!!!