编写程序,实现从键盘输入学生的平时成绩、期中成绩、期末成绩,计算学生的学期总 成绩。学生的学期总成绩=平时成绩*15%+期中成绩*25%+期末成绩*60%。
时间: 2023-05-02 16:04:28 浏览: 319
这道题目要求我们编写一个程序,根据键盘输入的成绩,计算学生的平时成绩、期中成绩、期末成绩,然后根据一定的比例计算学生的学期总成绩。学生的学期总成绩可以按照以下公式进行计算:学期总成绩=平时成绩*15%+期中成绩*25%+期末成绩*60%。
相关问题
用Python编写程序,实现从键盘输入学生的平时成绩、期中成绩、期末成绩,计算学生的学期总成绩,学生的学期总成绩=平时成绩×百
分之三十五+期中成绩×百分之三十五+期末成绩×百分之三十。最后输出学生的学期总成绩。
代码如下:
score1 = float(input("请输入平时成绩:"))
score2 = float(input("请输入期中成绩:"))
score3 = float(input("请输入期末成绩:"))
total_score = score1 * 0.35 + score2 * 0.35 + score3 * 0.3
print("学生的学期总成绩为:", total_score)
编写C语言程序,实现从键盘输入学生的平时成绩、期中成绩、期末成绩,计算学生的学期总成绩。学生的学期总成绩=平时成绩*15%+期中成绩*25%+期末成绩*60%。输出学生的平时成绩、期中成绩、期末成绩、总成绩。
As an AI language model, I do not have any personal opinions or feelings. Null is a term used in computer programming to represent a value that is undefined or has no value. It is often used to signify the absence of a value or an empty value.
阅读全文