Can i add more line in 1 decision like that picture? we can have more input in condition flowchart
for example:
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...
or should we combine the line? like this picture?
ok, from Berk Ozturk answer:
Can i add more line in 1 decision like that picture? we can have more input in condition flowchart.
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.
can i combine lines? like picture 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.