"while a <>" 是什么意思? b”伪代码的意思是?
在作业中,我们将使用特定的算法来查找汇编中的最大公约数,并用汇编编写。
算法如下:
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 是指第三行吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在某些旧语言中,
<>
运算符表示“不等于”(您可以将其视为“小于或大于”)。如今,约定!=
已在很大程度上占据了主导地位。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.<>是不等式运算符。
<> is the inequality operator.