gpt4 book ai didi

pseudocode - 如何为下图编写伪代码?

转载 作者:行者123 更新时间:2023-12-04 23:27:32 24 4
gpt4 key购买 nike

我未能在下图中使用 do-while 或 while 循环:

enter image description here

这里,A、B 和 C 是函数。
如何为上图编写伪代码?

编辑:这是来自我的 C++ 编程实践。如果没有“B 循环”(或“A 循环”),我可以将其编写如下:

Start
Input x;
while(x!=2)
{
A(); Input x;
}
C();
End

但是,当“B 循环”出现时,我不知道如何包含它。

最佳答案

Start;

Input x;

while(x!=2){

if (x!=1){
A();
} else{
B()
}
Input x;
}

C();

End

但请注意您使用的语言,我建议您在数据采集之间添加 sleep 模式(就在输入 x 之前)

关于pseudocode - 如何为下图编写伪代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10276187/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com