gpt4 book ai didi

c# - 用 C# 中的另一个等效行替换换行符

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

我需要更换断线;在不使用 goto 的情况下与另一条等效行对齐,可能的解决方案是什么?

static void Main(string[] args)
{
int Max = 100;

for (int i = 0; i < Max; i++)
{
Console.Writeline(i);

if (i == 50)
break;
}

Console.ReadLine();
}

最佳答案

i设置为Max

if (i == 50)
i = Max;

这将停止循环运行。它与break不完全相同。由于它会执行if语句之后的代码,您可能需要使用continue来跳过它。

关于c# - 用 C# 中的另一个等效行替换换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27546197/

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