score = float(input("请输入第%d个学生的第%d门课的成绩:" % (i, j))) total += score average = total / 3 print("第%d个学生的平均成绩为:%.2f" % (i, average)) ``` 上述程序中,外层循环是对5个学生进行遍历,内层环是对每个学生成绩进行输入和计算平均分。 这里输入语句使用了 `...