Trang chủPhản Hồi về: 100 bài code lập trình python từ cơ bản đến nâng cao
BÀI TẬP : 85
- s=input()
- a=s.split()
- for i in range(0,len(a)-1):
- print(a[i],end=” “)
BÀI TẬP : 86
- import math
- def nhap():
- a,b,c=map(float,input().split())
- return a,b,c
- #
- def chuvi(a,b,c):
- return a+b+c
- #
- def dientich(a,b,c):
- p=chuvi(a,b,c)/2
- return math.sqrt(p*(p-a)*(p-b)*(p-c))
- #
- a,b,c=nhap()
- print(“%0.1f”%chuvi(a,b,c),”%0.3f”%dientich(a,b,c))
BÀI TẬP : 87
- def nhap():
- n=int(input())
- return n
- def chia5(n):
- if n%5==0:
- return “Yes”
- else:
- return “No”
- n=nhap()
- print(chia5(n))
BÀI TẬP : 88
- def ucln(a,b):
- while a!=b:
- if a>b:
- a=a-b
- else:
- b=b-a
- return a
- #
- def nhap():
- t,m=map(int,input().split())
- return t,m
- #
- def RG(t,m):
- x=ucln(t,m)
- t//=x
- m//=x
- return t,m
- #
- t,m=nhap()
- t,m=RG(t,m)
- print(t,”/”,m,sep=””)