【题目链接】
【题目描述】
数学中经典的“鸡兔同笼”问题,已知头共x个,脚共y只,问笼中的鸡和兔各有多少只?
【输入】
头和脚的数量。
【输出】
鸡和兔各自数量。一个空格隔开。
【题解代码】
#include <iostream>
using namespace std;
int main()
{
int x, y;
cin >> x >> y;
int a = x * 4;
int b = a - y;
int j = b / 2;
int t = x - j;
cout << t << " " << j;
return 0;
}