提交时间:2020-08-23 15:58:26
运行 ID: 5998
#include<bits/stdc++.h> using namespace std; int k=1; double d1,d2,d3,d4; int main(){ while(k){ cin>>d1>>d2>>d3>>d4; if(d1==11||d1==13||d1==12) d1=0.5; if(d2==11||d2==13||d2==12) d2=0.5; if(d3==11||d3==13||d3==12) d3=0.5; if(d4==11||d4==13||d4==12) d4=0.5; d1+=d2; d3+=d4; if(d1>10.5) d1=0; if(d3>10.5) d3=0; if(d1==d3) cout<<0<<endl; if(d1>d3) cout<<1<<endl; if(d1<d3) cout<<-1<<endl; } return 0; }