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

L1-063 吃鱼还是吃肉 (10 分)

时间:2021-04-23 11:57:55      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:vector   weight   res   cout   tor   水题   string   ring   sha   

水题。

int h[]={129,130};
int w[]={25,27};

int main()
{
    int T;
    cin>>T;
    while(T--)
    {
        int sex,height,weight;
        cin>>sex>>height>>weight;

        vector<string> res;

        if(height < h[sex])
            res.pb("duo chi yu!");
        else if(height == h[sex])
            res.pb("wan mei!");
        else
            res.pb("ni li hai!");
        
        if(weight < w[sex])
            res.pb("duo chi rou!");
        else if(weight == w[sex])
            res.pb("wan mei!");
        else
            res.pb("shao chi rou!");

        for(int i=0;i<res.size();i++)
            if(i) cout<<‘ ‘<<res[i];
            else cout<<res[i];
        cout<<endl;
    }

    //system("pause");
    return 0;
}

L1-063 吃鱼还是吃肉 (10 分)

标签:vector   weight   res   cout   tor   水题   string   ring   sha   

原文地址:https://www.cnblogs.com/fxh0707/p/14689534.html

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