tj-3
2024-06-03 07:27:21
发布于:浙江
54阅读
0回复
0点赞
if判断就行了。
#include <bits/stdc++.h>
using namespace std;
string win[2]={"NO","YES"};
int main(){
int n;
cin>>n;
if (n%2==1){
cout<<n/2+1<<endl;
}else{
cout<<n<<endl;
}
return 0;
}
这里空空如也
有帮助,赞一个