码迷,mamicode.com
首页 > 其他好文 > 详细

poj2070简单题

时间:2015-05-29 13:31:29      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>
#include <stdlib.h>

int main()
{
    float sped;
    int wei,sth;
    while(scanf("%f %d %d",&sped,&wei,&sth) != EOF)
    {
        int flag=0;
        if(sped==0)
            break;
        if(sped<=4.5 && wei>=150 && sth>=200)
        {
            printf("Wide Receiver ");
            flag=1;
        }
        if(sped<=6.0 && wei>=300 && sth>=500)
        {
            printf("Lineman ");
            flag=1;
        }
        if(sped<=5.0 && wei>=200 && sth>=300)
        {
            printf("Quarterback ");
            flag=1;
        }
        if(flag==0)
            printf("No positions");
        printf("\n");
    }
    return 0;
}

 

poj2070简单题

标签:

原文地址:http://www.cnblogs.com/gabygoole/p/4538014.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!