LYLlllhhh 发表于 2021-2-5 17:42:37

又不懂了

有三问,麻烦了~
(一)def power(x, y):
    result = 1
   
for i in range(y):
      result *= x

    return result

print(power(2, 3))

第三和四句看不懂

(二)def gcd(x, y):
    while y:
      t = x % y
      x = y
      y = t

    return x
   
print(gcd(4, 6))
其中x=4,y=6,不应该先比较x,y的大小嘛

(三)def Dec2Bin(dec):
    temp = []
    result = ''

    while dec:
      quo = dec % 2
      dec = dec // 2
      temp.append(quo)

    while temp:
      result += str(temp.pop())

    return result

print(Dec2Bin(62))
里面while temp看不懂

qiuyouzhi 发表于 2021-2-5 17:45:08

1,就是循环乘上y次x
2,不用,你百度下这个求法就知道了
3,while temp 就相当于 while temp != []

Daniel_Zhang 发表于 2021-2-5 17:51:43

1.
比如说 2的3次方

x = 2 y = 3
只要没达到3,那么久一直自己乘以自己

2^3 = 2*2*2 = 8

2.

gcd 是最大公约数,为什么要比大小
x = 4 y = 6
那么 t = 4 % 6 = 4
x = y = 6
y = t = 4

然后进入下一轮

如果 x 小于 y 直接就互换xy了,通过取模等一系列的操作就会互换了

3.

https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=189933&pid=5230108

LYLlllhhh 发表于 2021-2-5 17:53:40

qiuyouzhi 发表于 2021-2-5 17:45
1,就是循环乘上y次x
2,不用,你百度下这个求法就知道了
3,while temp 就相当于 while temp != []

(一)for i in range(y),如果y=3,是一个什么过程呢?
(二)result *= x,我怎么看不出幂次运算呀{:5_96:}

昨非 发表于 2021-2-5 17:54:11

一、
for i in range(y):
      result *= x
这里i只限制了次数,就是循环里的内容执行y次
而每次循环,result在1的基础上乘以x,也就是y个x相乘,x的y次方
(result*=x)等价于(result=result*x)

二、辗转相除法的定义:
以除数和余数反复做除法运算,当余数为 0 时,取当前算式除数为最大公约数,

三、while temp:等价于while temp 不为空
只有temp不为空时进入循环

昨非 发表于 2021-2-5 17:56:35

LYLlllhhh 发表于 2021-2-5 17:53
(一)for i in range(y),如果y=3,是一个什么过程呢?
(二)result *= x,我怎么看不出幂次运算呀{:5 ...

看五楼解释

qiuyouzhi 发表于 2021-2-5 17:58:07

LYLlllhhh 发表于 2021-2-5 17:53
(一)for i in range(y),如果y=3,是一个什么过程呢?
(二)result *= x,我怎么看不出幂次运算呀{:5 ...

1,就是x乘上三次(x * x * x)
y等于几就是几个x相乘。
2,同上,就是为了保存每次x相乘的结果。
比如x = 5,那么第一次,result = 1 * 5 = 5
第二次,result = 5 * 5 = 25
第三次,result = 25 * 5 = 125
所以5的三次方就是125
页: [1]
查看完整版本: 又不懂了