选择练习
#include <iostream>
using namespace std;
int main()
{
int a,b,c,d;
cin >>a>>b>>c>>d;
if (b > a && d > a && c+d > a +b && c > 0 && d > 0 && a%2 == 0)
{
printf("Valores aceitos");
}
else
printf("Valores nao aceitos");
return 0;
}```

浙公网安备 33010602011771号