Online Judge | Problem Set | Authors | Online Contests | User | ||||||
---|---|---|---|---|---|---|---|---|---|---|
Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest |
尝试了N多次,就是WA 受不了了!!!! 请牛人看看,指教一下!!#include<iostream> using namespace std; int main() { double speed , weight , strength ; // freopen ("2272.txt","r",stdin); while ( cin >> speed >> weight >> strength ) { int t = 0 ; if( speed == 0 && weight == 0 && strength == 0 ) { break ; } if( speed <= 4.5 && weight >= 150 && strength >= 200 ) { t++ ; cout << "Wide Receiver " ; } if( speed <= 6.0 && weight >= 300 && strength >= 500 ) { t++ ; cout << "Lineman " ; } if( speed <= 5.0 && weight >= 200 && strength >= 300 ) { t++ ; cout << "Quarterback " ; } if( t == 0 ) { cout << "NO positions" ; } cout << endl; } return 0 ; } Followed by:
Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator