解
2024-05-20 16:38:15
发布于:浙江
25阅读
0回复
0点赞
这样做的:
#include <iostream>
using namespace std;
int main() {
int x, y;
if (cin >> x >> y && 1 <= x && x <= 1000 && 1 <= y && y <= 1000) {
int a = 4 * x - y;
int b = a / 2;
if (a % 2 == 0 && b >= 0 && b <= x) {
cout << b << endl << x - b << endl;
} else {
cout << "No solution" << endl;
}
} else {
cout << "Invalid input" << endl;
}
return 0;
}
全部评论 2
6666666666666666666666666666666666666666666666666666666666666666666666666666666
2024-10-10 来自 浙江
0#include <bits/stdc++.h>
using namespace std;
int main(){
int x,y;
cin>>x>>y;
int a=(x*4)-y;
int b=(a/2);
cout<<b<<endl<<x-b;
return 0;
}2024-05-20 来自 浙江
0
有帮助,赞一个