" 是什么意思? b”伪代码的意思是?" />

"while a <>" 是什么意思? b”伪代码的意思是?

发布于 2024-10-21 15:19:32 字数 354 浏览 1 评论 0 原文

在作业中,我们将使用特定的算法来查找汇编中的最大公约数,并用汇编编写。

算法如下:

Input:a,b
Local: c
 While a <> b
     While a > b
         c = a - b
         a = c
     End While
     While b > a
         c = b - a
         b = c
     End While
End While
At this point, GCD(a,b)=a=b.  

a <> 是什么意思? b 是指第三行吗?

In an assignment we are to use a specific algorithm to find the greatest common divisor in assembly, written in assembly.

The algorithm is as follows:

Input:a,b
Local: c
 While a <> b
     While a > b
         c = a - b
         a = c
     End While
     While b > a
         c = b - a
         b = c
     End While
End While
At this point, GCD(a,b)=a=b.  

What does a <> b mean in the third line?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷月断魂刀 2024-10-28 15:19:32

在某些旧语言中,<> 运算符表示“不等于”(您可以将其视为“小于或大于”)。如今,约定 != 已在很大程度上占据了主导地位。

In certain old languages, the <> operator meant "not equal" (you can see it as "less than or greater than"). The convention != has largely taken over nowadays.

香橙ぽ 2024-10-28 15:19:32

<>是不等式运算符。

<> is the inequality operator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文