永发信息网

电脑高手?答案~·

答案:2  悬赏:30  手机版
解决时间 2021-07-30 23:41
  • 提问者网友:心牵心
  • 2021-07-30 06:14

五.完善以下程序,对学生某门课程按其笔试成绩进行等级评定“

成绩<60 ——不及格

成绩>=60 and 成绩<75 ——及格

成绩>=75 and 成绩<90 ——良好

其他 ——优秀

学生等级评定表格名为StudLevel, 包含字段“成绩”和“等级”。

clear

scan

do case

case 成绩<60

replace 等级 with "不及格"

case 成绩>=60 and 成绩<75

case 成绩>=75 and 成绩<90

replace 等级 with "良好"

replace 等级 with "优秀"

endcase

endscan

use in StudLevel

最佳答案
  • 五星知识达人网友:一秋
  • 2021-07-30 07:39

#include<iostream>
using namespace std;
void main()
{
int grade;
aaa:cout<<"请输入课程成绩:"<<endl;
cin>>grade;
if(grade<60)
{cout<<"此课程成绩为"<<grade<<"是不及格的"<<endl;}
else if(60<=grade)
{
if(grade<75)
{cout<<"此课程成绩为"<<grade<<"是及格的"<<endl;}
else if(75<=grade)
{
if(grade<90)
{cout<<"此课程成绩为"<<grade<<"是良好的"<<endl;}
else
{cout<<"此课程成绩为"<<grade<<"是优秀的"<<endl;}
}
}
goto aaa;
}


结果显示为:


全部回答
  • 1楼网友:摆渡翁
  • 2021-07-30 07:52
用哪种语言?
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯