“!” 是什么意思?伪代码是什么意思?我知道“!”代表阶乘,但我无法翻译它

发布于 2024-08-25 23:57:00 字数 229 浏览 7 评论 0原文

! 在伪代码中意味着什么?我知道 ! 代表阶乘,但我无法翻译它。

ex:

get操作

if (operation!= ’B’ OR operation != ’D’ OR operation!= ’W’) then
    print "Invalid Operation"

是什么意思?

What does ! mean in pseudo-code? I know ! stands for factorial but I can't translate it .

ex:

get operation

if (operation!= ’B’ OR operation != ’D’ OR operation!= ’W’) then
    print "Invalid Operation"

What does it mean?

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

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

发布评论

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

评论(3

忱杏 2024-09-01 23:57:00

!= 表示不等于,! 通常表示否定

!= means not equal and ! generally means not or negation.

伤痕我心 2024-09-01 23:57:00

意思是“不”。所以你的示例代码

if (operation!= ’B’ OR operation != ’D’ OR operation!= ’W’)

可以读作

“如果操作不等于'B'或操作不等于'D'或操作不等于'W'”

It means "not". So your example code

if (operation!= ’B’ OR operation != ’D’ OR operation!= ’W’)

can be read as

"If operation does not equal 'B' or operation does not equal 'D' or operation does not equal 'W'"

岛歌少女 2024-09-01 23:57:00

一般来说,

!   表示不是
|| 表示逻辑
&& 表示逻辑

示例:

!false == true  ( == means equality )

In general,

!   means   not
|| means logical or
&& means logical and

Example:

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