gpt4 book ai didi

c++ - 在 C++ 中立即退出 'while' 循环

转载 作者:IT老高 更新时间:2023-10-28 21:34:34 26 4
gpt4 key购买 nike

如何立即退出 while 循环而不到 block 的末尾?

例如,

while (choice != 99)
{
cin >> choice;
if (choice == 99)
//Exit here and don't get additional input
cin>>gNum;
}

有什么想法吗?

最佳答案

使用中断?

while(choice!=99)
{
cin>>choice;
if (choice==99)
break;
cin>>gNum;
}

关于c++ - 在 C++ 中立即退出 'while' 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/872996/

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