linux下bash程序的问题

输入分数,判断等级,60-69为D,70-79为C,80-89为B,90-100为A,60以下为FAIL,其他错误输出报错。。。。用if语句,谁会写啊???... 输入分数,判断等级,60-69为D,70-79为C,80-89为B,90-100为A,60以下为FAIL,其他错误输出报错。。。。用if语句,谁会写啊??? 展开
 我来答
yjx_xiaoxin
2009-11-02 · TA获得超过6702个赞
知道大有可为答主
回答量:4618
采纳率:50%
帮助的人:2521万
展开全部
#!/bin/bash
echo Please input your score:
read score
if [ $score -ge 60 -a $score -le 69 ]
then output="D"
elif [ $score -ge 70 -a $score -le 79 ]
then output="C"
elif [ $score -ge 80 -a $score -le 89 ]
then output="B"
elif [ $score -ge 90 -a $score -le 100 ]
then output="A"
elif [ $score -lt 60 ]
then output="Fail"
else
output="Error"
fi
echo $output
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式