有更多行的流程图决策?

Flowchart Decision with more lines?

我可以像那张图片一样在 1 个决策中添加更多行吗?我们可以在条件流程图中输入更多信息

例如:

for(int i = 0; i < 10; i++){
    if( condition ){
        some process...
        some process...
        some process...
    } 
    else {
        some process...
        some process...
        some process...
        if(condition){
            some process...
            some process...
        }
    }
 }

some process...
some process...
some process...

还是应该合并这条线?喜欢这张照片吗?

好的,来自 Berk Ozturk 的回答:

我可以像那张图片一样在 1 个决策中添加更多行吗?我们可以在条件流程图中有更多的输入。

You should be able to redirect another input flow to this condition. In the picture, it seems like there are already 3 inputs to the if condition. Adding more inputs should be possible.

我可以合并行吗?像图2

Yes, you can combine like this what matters is where the direction of the arrow is pointing to decide if it is an input or output. It doesn't matter where you put the arrows.