Python教程

P1888 三角函数(python3实现)

本文主要是介绍P1888 三角函数(python3实现),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

https://www.luogu.com.cn/problem/P1888

"""
P1888 三角函数
https://www.luogu.com.cn/problem/P1888
"""

def gcd(x,y):
            z=y

            while x%y!=0:
                        z=x%y
                        x=y
                        y=z
            return z

a=list(map(int,input().split()))
      
#a=[int(i) for i in a]

a=sorted(a)
       
b=a[2]
c=a[0]

gcd_ans=gcd(b,c)

print("%d/%d" %(a[0]//gcd_ans,a[2]//gcd_ans))

这篇关于P1888 三角函数(python3实现)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!