将下列的伪码转换成程序流程图 +begin+ s1; +if+x+>5+then+s2 +else+s3; +while+y+<0+do+ +begin+ +if+z+>3+then+s4 +else
时间: 2023-12-26 21:05:25 浏览: 127
流程图和伪代码.doc
5星 · 资源好评率100%
```flowchart
st=>start: Start
op1=>operation: s1
cond1=>condition: x > 5?
op2=>operation: s2
op3=>operation: s3
cond2=>condition: y < 0?
op4=>operation: s4
e=>end: End
st->op1->cond1
cond1(yes)->op2->e
cond1(no)->op3->cond2
cond2(yes)->op4->cond2
cond2(no)->e
```
伪码转换成程序流程图如上所示。
阅读全文