“!” 是什么意思?伪代码是什么意思?我知道“!”代表阶乘,但我无法翻译它
!
在伪代码中意味着什么?我知道 !
代表阶乘,但我无法翻译它。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
!=
表示不等于,!
通常表示不 或否定。!=
means not equal and!
generally means not or negation.意思是“不”。所以你的示例代码
可以读作
It means "not". So your example code
can be read as
一般来说,
示例:
In general,
Example: