Nguyễn Thanh Tuấn
Giới thiệu về bản thân
Chào mừng bạn đến với trang cá nhân của Nguyễn Thanh Tuấn
0
0
0
0
0
0
0
2025-12-17 19:20:52
ten = input("Ho va ten: ")
Toan = int(input("Diem Toan : "))
Anh = int(input("Diem Anh : "))
Van = int(input("Diem Van : "))
diemtb = (Toan * 2 + Van + Anh ) / 4
print("Ho va ten: ", ten)
print("Diem trung binh", diemtb)
2025-12-17 19:16:48
a = float(input("A : "))
b = float(input("B : "))
c = a + b
d = a - b
print("Tong:", c)
print("Hieu:", d)
2025-12-17 19:14:23
chieudai=float(input("Chieu dai: "))
chieurong=float(input("Chieu rong: "))
a=(chieudai+chieurong)/2
b=chieudai*chieurong
print("Chu vi", a )
print("Dien tich", b)
2025-12-17 19:10:19
r=float(input("Duong kinh: "))
c=3.14*2*r
s=3.14*r*r
print(c,s)