流程图模式
我从一次测试中得到了这一点,但确实没有明白这一点。
以下哪一项选项可以自然地描述上面的流程图 拉尔语言模式?
如果..那么..并且如果..那么..
如果..或者..那么..
如果..那么..else..
如果..并且..那么..
If..then..again
以下哪一项正确地识别了上面的流程图?
选择模式
分支模式
无限循环模式
顺序模式
终止循环模式
注意:这不是我的作业;我是认真的。谢谢。
I got this from one test and really didn't get the point.
Which one of the following choices might describe the flow chart above in natu
ral language patterns?
If..then..and if..then..
If..or..then..
If..then..else..
If..and..then..
If..then..again
Which one of the following choices correctly identifies the flowchart above?
Selection pattern
Branch pattern
Infinite loop pattern
Sequence pattern
Terminating loop pattern
Note: It is not from my homework; I am serious. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个问题的答案看起来都是糟糕的选择,但我必须通过排除法猜出 3。图表中没有 AND 或 OR 的概念,排除了 1、2 和 4。如果它说“如果那么 ELSE 再次”,则可能是 5,但事实并非如此。
第二个是 5,因为它是一个循环并且存在终止情况。还表示了分支(条件)和序列(B、A)模式,但最大的模式是终止循环。
也许它需要更多的背景信息
课堂讨论或其他事情。
The first question's answers seem like all poor choices, but I'd have to guess 3 by elimination. There is no concept of AND or OR in the chart, ruling out 1, 2, and 4. It might be 5 if it said "If then ELSE again", but it doesn't.
5 for the second one because it is a loop and there is a termination case. Branching (Condition) and Sequence (B, A) patterns are represented as well, but the biggest one is the terminating loop.
Perhaps it requires more context from
class discussion or sonething.