Điểm:
100 (p)
Thời gian:
1.0s
Bộ nhớ:
256M
Input:
bàn phím
Output:
màn hình
Cho biết điểm của ba môn \(Toán, Văn, Tin\). Tính và in ra giá trị trung bình theo công thức (Điểm toán + điểm văn + điểm Tin)/3.
Input
- Gồm 3 dòng, mỗi dòng ghi một số thực có giá trị trong \([0,10]\).
Output
- Ghi một số là giá trị điểm trung bình, lấy 2 số phần thập phân.
Example
Test 1
Input
7
8
9
Output
8.00
Test 2
Input
1
8
10
Output
6.33
Bình luận
Vì sao phải dùng float thay int(python) khi lấy input thế nhỉ mình code lâu rồi còn chưa bt
toan=float(input())
van=float(input())
tin=float(input())
tb=(toan+van+tin)/3
giatri="{:.2f}".format(tb)
print(giatri)
MATH = float(input())
LITERATURE = float(input())
INFORMATION_TECHNOLOGY = float(input())
DTB= (MATH+LITERATURE+INFORMATION_TECHNOLOGY)/3
print(format(DTB,".2f"))
a=float(input())
b=float(input())
c=float(input())
n=(a+b+c)/3
print("{:.2f}".format(n))
Toan = float(input())
Van = float(input())
Tin = float(input())
DTB= (Toan+Van+Tin)/3
print(format(DTB,".2f"))
toan=float(input())
tv=float(input())
tlv=float(input())
n=(toan+tlv+tv)/3
print(format(n,".2f"))
f
toan=float(input())
tv=float(input())
tlv=float(input())
n=(toan+tlv+tv)/3
print(format(n,".2f"))
toan=float(input())
tv=float(input())
tlv=float(input())
n=(toan+tlv+tv)/3
print(format(n,".2f"))
Dùng fixed<<setprecision(2) để in ra 2 số sau phần thập phân