gpt4 book ai didi

c# - If 语句不工作 C#

转载 作者:行者123 更新时间:2023-11-30 13:26:08 25 4
gpt4 key购买 nike

我不确定我是真的累了,错过了一些明显的东西,还是我的程序有问题。基本上我的 if 语句条件不起作用。

public bool check(string nextvaluebinary)
{
bool test = true;

for (int i = -1; i < 8; ++i)
{
i++;
System.Console.WriteLine(nextvaluebinary[i] + " " + nextvaluebinary[i + 1]);
if (nextvaluebinary[i] == 1)
{
System.Console.WriteLine("Activated");
if (nextvaluebinary[i + 1] == 0)
{
test = false;
System.Console.WriteLine("false");
}
}
else
{
test = true;
}

if (test == false)
{
break;
}
}

return test;
}

我传入字符串 0001010110 并得到以下输出:

0 0
0 1
0 1
0 1
1 0

但没有“activated”或“false”,即使最后一个是“1 0”。再次抱歉,如果这是一个愚蠢的问题,我们将不胜感激任何见解或帮助。

最佳答案

您正在将 char 与 int 进行比较。您尝试进行的检查与您尝试完成的检查具有完全不同的含义。您需要先检查它是否等于“1”,或者先将 char 转换为 int,以便进行数字比较。

if (nextvaluebinary[i] == '1')

关于c# - If 语句不工作 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31546671/

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