2649: 段位计算

编程入门 行业动态 更新时间:2024-10-23 08:33:03

2649: <a href=https://www.elefans.com/category/jswz/34/1692232.html style=段位计算"/>

2649: 段位计算

2649: 段位计算

Time Limit: 1 Sec   Memory Limit: 128 MB
Submit: 152   Solved: 94
[ Submit][ Status][ Web Board]

Description

输入分数score,根据以下信息输出段位

青铜:0<score<=1200              Brass

白银:1200<score<=1450        Silver

黄金:1450<score<=1700        Gold

白金:1700<score<=2000        Platinum gold

钻石:2000<score                   Diamonds

Input

输入一个分数

Output

输出对应段位

Sample Input

1000

Sample Output

Brass

AC代码:
#include <stdio.h>
#include <stdlib.h>int main()
{int score;scanf("%d",&score);if(score>0&&score<=1200)printf("Brass\n");if(score>1200&&score<=1450)printf("Silver\n");if(score>1450&&score<=1700)printf("Glod\n");if(score>1700&&score<=2000)printf("Platinum gold\n");if(score>2000)printf("Diamonds\n");return 0;
}


更多推荐

2649: 段位计算

本文发布于:2024-02-06 03:47:37,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1746054.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:段位

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!