Vasya the Hipster

Vasya the Hipster

题目链接

题意

求出Vasya可以穿不同的袜子的最大天数和他可以穿同样的袜子的天数

实现步骤
  1. 先输入a、b两个值,表示红色和蓝色袜子数量
  2. if判断
  3. 输出结果即可
代码
#include
#include
using namespace std;
int main()
{
	int a, b;
	cin >> a >> b;
	if (a >= b)
		cout << b <<" "<< (a - b) / 2 << endl;
	else
		cout << a <<" "<< (b - a) / 2 << endl;
	return 0;
}
 
 

总结

模拟

你可能感兴趣的:(算法)