只和两者之间最初的状态有关,一方不可能输,一方不可能赢,不会出现平的情况
网上的答案
using namespace std; int main() { int n, m; cin >> n >> m; int x1, y1, x2, y2; cin >> x1 >> y1 >> x2 >> y2; int sum = abs((x2 - x1) + (y2 - y1)); if(sum % 2 == 0){ cout << “Win” << endl; }else{ cout << “Lose” << endl; } return 0; }
只和两者之间最初的状态有关,一方不可能输,一方不可能赢,不会出现平的情况
网上的答案
include
include
using namespace std;
int main()
{
int n, m;
cin >> n >> m;
int x1, y1, x2, y2;
cin >> x1 >> y1 >> x2 >> y2;
int sum = abs((x2 - x1) + (y2 - y1));
if(sum % 2 == 0){
cout << “Win” << endl;
}else{
cout << “Lose” << endl;
}
return 0;
}