野生小松鼠的答案

野生小松鼠  •  2年前


#include<bits/stdc++.h>
using namespace std;
int main()
{
	int a, b, c;
	scanf("%d", &a);
	if(a % 2 == 0)
	{
		b = a / 2;
		printf("%d", b);
	}
	if(a % 2 != 0)
	{
		c = (a + 1) / 2;
		printf("%d", c);
	}
	return 0;
}

评论:

请先登录,才能进行评论