60分求助!!!

B3795 [NICA #1] 成绩

``` #include<iostream> using namespace std; int a,b,c,o,t,th; int main(){ cin>>a>>b>>c>>o>>t>>th; if(a>=60&&c>=60||a>=60&&b>=60||b>=60&&c>=60) cout<<"PASS"<<endl; else cout<<"FAIL"<<endl; if((a*o+b*t+c*th)/(o+t+th)*1.0>=60) cout<<"PASS"; else cout<<"FAIL"; return 0; } ``` @[XDuanZai](/user/1353733)
by StarRoam @ 2024-07-16 16:16:11


@[XDuanZai](/user/1353733) 你错,是因为你太**了
by TONG100 @ 2024-07-16 16:21:52


@[TONG100](/user/928002) 什么意思??
by XDuanZai @ 2024-07-19 14:32:55


@[StarRoam](/user/541499) 谢谢
by XDuanZai @ 2024-07-19 14:33:17


|