题目内容
以下脚本实现对成绩的五级判断,填空完成脚本。#!/bin/bashecho "please input score(0-100):"scoreif [ $score -lt 0 -o $score -gt 100 ]; thenecho erro scoreelif [ $score -ge 90 ]; thenecho Aelif [ $score -ge 80 ]; thenecho Belif [ $score -ge 70 ]; thenecho Celif [ $score -ge 60 ]; thenecho Delseecho Efi
查看答案
搜索结果不匹配?点我反馈
更多问题