Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

ggg

Posted by raidou at 2004-12-31 10:31:44 on Problem 2070
#include <stdio.h>
#include <math.h>
void main(){
	float a;
	int b,c;
	scanf("%f %d %d",&a,&b,&c);
	while(a!=0&&b!=0&&c!=0){
		if(a<=4.5){
			if(b>=150&&c>=200){
			    printf("Wide Receiver ");
			}
			if(b>=200&&c>=300){
                  printf("Quarterback ");
			}
            if(b>=300&&c>=500){
			      printf("Lineman ");
			}
		}
		else{ 
			if(a<=5.0){
				if(b>=200&&c>=300){
					printf("Quarterback ");
				}
			    if(b>=300&&c>=500){
			        printf("Lineman ");
				}
			}
			else{ 
				if(a<=6.0&&b>=300&&c>=500){
					printf("Lineman ");
				}
				else{
					printf("No positions ");
				}
			}
		}
		scanf("%f %d %d",&a,&b,&c);
	}
}

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator