NGUYỄN NHẬT AN
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 NHẬT AN
0
0
0
0
0
0
0
2023-12-26 19:14:35
a=float(input('Nhập a:'))
b=float(input('Nhập b:'))
c=(a+b)*2
s=a*b
print('Chu vi hình chữ nhật:',c)
print('Diện tích hình chữ nhật:',s)
2023-12-26 19:10:17
tong=float(input('Tổng:'))
hieu=float(input('Hiệu:'))
a=(tong+hieu)/2
b=(tong-hieu)/2
print(a,b)
2023-12-26 19:05:36
ho_va_ten=input('Nhập họ và tên:')
diem_toan=float(input('Nhập điểm toán:'))
diem_van=float(input('Nhập điểm văn:'))
diem_anh=float(input('Nhập điểm anh:'))
print('Điểm trung bình:',(diem_toan*2+diem_van+diem_anh)/4)
2023-12-26 18:54:35
r=float(input( 'Nhập bán kính:'))
_PI=3,14
print('Diện tích hình tròn',r**2*_PI)
print(' Chu vi hình tròn', r*_PI/2)