”工欲善其事,必先利其器。“—孔子《论语.录灵公》
首页 > 编程 > 编写 SSLC 分数百分比计算器程序

编写 SSLC 分数百分比计算器程序

发布于2024-11-25
浏览:241

Write a program for SSLC Mark Percentage Calculator

SSLC 分数百分比计算器:

计算总分百分比,可以使用公式:

分数百分比 =(获得的总分数/可用分数)* 100

计算总分百分比的步骤如下:

-Add up the total points earned
-Add up the total points possible
-Divide the total points earned by the total points possible
-Multiply the result by 100 

例子:

468/500*100=93.6

print("Welcome to SSLC Marksheet")
tamil=int(input("Tamil mark : "))
english=int(input("English mark : "))
maths=int(input("Maths mark : "))
science=int(input("Science mark : "))
social=int(input("Social mark : "))
result=tamil english maths science social
print("Total Mark :", result)
max_mark=[tamil,english,maths,science,social]
percent=result/(len(max_mark)*100)*100
print("Percentage (%):",round(percent,2))



输出:

Welcome to SSLC Marksheet
Tamil mark : 98
English mark : 88
Maths mark : 98
Science mark : 88
Social mark : 96
Total Mark : 468
Percentage (%): 93.6
版本声明 本文转载于:https://dev.to/lakshmi_prithanadesan_32/write-a-program-for-sslc-mark-percentage-calculator-4ha2?1如有侵犯,请联系[email protected]删除
最新教程 更多>

免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。

Copyright© 2022 湘ICP备2022001581号-3