流程图否则如果

发布于 2024-12-09 06:14:12 字数 167 浏览 0 评论 0原文

我正在为算法制作流程图,但遇到了 else if 语句的问题。

对于像这样的 if 语句,

if (something) {}
else if (something) {}
else {}

else if 语句在流程图中会是什么样子?

I'm making a flowchart a for an algorithm, and came into some problem for an else if statement.

For an if-statement such as this one

if (something) {}
else if (something) {}
else {}

How would the else if statement look like in a flowchart diagram?

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

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

发布评论

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

评论(4

¢好甜 2024-12-16 06:14:12

http://code2flow.com 允许您从代码创建此类流程图。

在此处输入图像描述< /a>

您可以单击进行编辑。

http://code2flow.com allows you to create such flowcharts from code.

enter image description here

You may click to edit this.

小ぇ时光︴ 2024-12-16 06:14:12

这是此内容的 DRAKON 版本:

if (case1) {outcome1}
else if (case2) {outcome2}
else {outcome3}

if and else if in DRAKON

或者,它可能如下所示:

switch构造在 DRAKON

参见这里:
http://en.wikipedia.org/wiki/DRAKON

Here is the DRAKON version of this:

if (case1) {outcome1}
else if (case2) {outcome2}
else {outcome3}

if and else if in DRAKON

Alternatively, it could look like this:

switch construct in DRAKON

See here:
http://en.wikipedia.org/wiki/DRAKON

长途伴 2024-12-16 06:14:12

您可以将其图解为两个单独的 if 语句。

我不知道这是否是“标准”方法,但这就是我所做的。

You could diagram this as two separate if statements.

I don't know if this is the "standard" method, but that's what I do.

咿呀咿呀哟 2024-12-16 06:14:12

首先,让我们重新编写该声明。

if (case1) {outcome1}
else if (case2) {outcome2}
else {outcome3}

难道不是这样流动的吗?

案例1?是的-->结果1

否 -->案例2?是的-->结果2

否 -->结果3

For starters, let's recast the statement.

if (case1) {outcome1}
else if (case2) {outcome2}
else {outcome3}

Does it not flow thus?

case1? yes --> outcome1

no --> case2? yes --> outcome2

no --> outcome3

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