第9次作业-函数求输入的任意两个数的最大值

Posted yyx1234

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第9次作业-函数求输入的任意两个数的最大值相关的知识,希望对你有一定的参考价值。

这个作业属于哪个课程 https://edu.cnblogs.com/campus/sdscfz/SF4
这个作业的要求在哪里 https://edu.cnblogs.com/campus/sdscfz/SF4/homework/12960
这个作业的目标 第9次作业-函数求输入的任意两个数的最大值
点击查看代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        var num1 = prompt(\'第一个数\');
        var num2 = prompt(\'第二个数\');
        function getMax(num1,num2)
        if(num1 > num2)
        return num1;
        else 
        return num2;
    

    var re = getMax(num1,num2);

    for(var i = 0;i<=100;i++)
    document.write(re)

    </script>
</body>
</html>



Python任意输入两个数,求两个数的最大公约数(最大公约数条件是公约数

一定大于1,一定不大于两个数中较小者,用 for 循环逆序完成)

参考技术A # 定义一个函数
def hcf(x, y):
"""该函数返回两个数的最大公约数"""

# 获取最小值
if x > y:
smaller = y
else:
smaller = x

for i in range(1,smaller + 1):
if((x % i == 0) and (y % i == 0)):
hcf = i

return hcf

# 用户输入两个数字
num1 = int(input("输入第一个数字: "))
num2 = int(input("输入第二个数字: "))

print( num1,"和", num2,"的最大公约数为", hcf(num1, num2))本回答被提问者和网友采纳
参考技术B #python3
import re
inp = input('Please input two integers: ')
a, b = [int(i) for i in re.findall(r'\d+', inp)]

def gys(m, n):
if m == 1 or m == n:
return m
for i in range(min(m, n), 0, -1):
if m%i == 0 and n%i == 0:
return i

g = gys(a, b)
print('最大公约数: ', g)
print('最小公倍数: ', a*b//g)

以上是关于第9次作业-函数求输入的任意两个数的最大值的主要内容,如果未能解决你的问题,请参考以下文章

第9次作业-函数求输入的任意两个数的平均值,并输出三个数中的最小值。

第9次作业-函数求输入的任意两个数的平均值,并输出三个数中的最小值。

第九次作业

Python任意输入两个数,求两个数的最大公约数(最大公约数条件是公约数

第9次作业

Python分两行输入两个正整数输出两个数的和差怎么写?