zgjja


私信TA

用户名:zgjja

访问量:12004

签 名:

X_X

等  级
排  名 147
经  验 7307
参赛次数 0
文章发表 71
年  龄 0
在职情况 学生
学  校
专  业 X_X

  自我简介:

解题思路:
找公约数并不断约分即可,最后使用python的格式化输出(Python3功能)输出即可。


注意事项:
这题目测用C++写会麻烦一些。。


参考代码:

def test(x, y):
    while 1:
        for i in range(2, min(x, y) + 1):
            if x % i == 0 and y % i == 0:
                x, y = x // i, y // i
                break
        break
    return x, y


nums = list(map( int, input().split()))
temp_0, temp_1 = test(nums[0], nums[1]), test(nums[2], nums[3])
print(f"zrf is:{temp_0[0]}/{temp_0[1]}; ssh is:{temp_1[0]}/{temp_1[1]}\n"
      f"(zrf==ssh) is:{int(temp_0[0] / temp_0[1] == temp_1[0]/temp_1[1])}; "
      f"(zrf<ssh) is:{int(temp_0[0] / temp_0[1] < temp_1[0]/temp_1[1])}")


 

0.0分

0 人评分

  评论区

  • «
  • »