gpt4 book ai didi

c# - 我用哪个循环询问用户是否要继续使用C#程序

转载 作者:太空宇宙 更新时间:2023-11-03 18:18:27 25 4
gpt4 key购买 nike

我编写了一个程序,要求输入并返回一个值。之后,我想询问用户是否要继续。但是我不知道该用什么。

最佳答案

我会使用do..while循环:

bool shouldContinue;
do {
// get input
// do operation
// ask user to continue
if ( Console.ReadLine() == "y" ) {
shouldContinue = true;
}
} while (shouldContinue);

关于c# - 我用哪个循环询问用户是否要继续使用C#程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2367647/

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