如何在伪代码中为多个测试分数调用此函数?到目前为止,我有:
Function String determineGrade(Real number)
if score >= 90
return "A"
else if score >= 80
return "B"
else if score >= 70
return "C"
else if score >= 60
return "D"
else
return "F"
end if
End function
我将如何调用此功能,以便显示10个不同的测试字母等级,其中10个不同的输入是我用伪代码从用户那里收到的?感谢
答案 0 :(得分:1)
这取决于你是从数组中获得成绩还是随机创建成绩。例如,对于数组,您可以执行此操作。
Function String name() // type can be void if you are printing
for i=0, i<10, i++
determineGrade(number[i])