gpt4 book ai didi

c - 如果语句不工作/未达到

转载 作者:行者123 更新时间:2023-11-30 18:55:11 24 4
gpt4 key购买 nike

我目前有一个程序可以继续获取输入,该程序最初将 b 的值设置为 TRUE(即 b = 1)。然后 switch 语句启动,将 c 的值设置为 TRUE(即 c = 1)。用户的下一个输入将 b 的值设置为 FALSE,但由于某种原因,第一个 if 语句从未到达,如行 "mvprintw(22,24,"It hasreached it");", 从未打印在我的屏幕上,尽管 b 的值为 false(b = 1),并且 c 的值现在为 true (c=1)。

我尝试使用嵌套的 if 而不是 case,但这会使事情进一步复杂化,而且坦率地说不起作用。任何有关此事的意见将不胜感激!

int moveC(int y, int x, int b, int i)
{ //first input from user, b is True, so first case occurs
//second input from user, b is false, so second case occurs, however, the if first if statement is never reached, but the second one is
int c = FALSE;

switch(b)
{
case TRUE:
c = TRUE; //this part is first reached from initall user input
refresh();
mvprintw(26,26,"value of c is... %d",c);
break;

case FALSE:
if(c == 1) //this part is never reached, even though the second user input is (b = 0 i.e false, and c = 1, i.e true)
{
mvprintw(22,24,"It has reached it");
mvprintw(y,x+7,"^");
refresh();
break;
}

else if(c == 0) //this if statement is always used even if c is not zero
{
mvprintw(y,x,"^");
refresh();
break;
}

最佳答案

moveC() 中声明

int c = FALSE;

这使得它成为驻留在堆栈中的自动变量,因此每次调用时,都会创建 c 并再次使用 FALSE 进行初始化,并且条件 c == 1case TRUE中永远不可能成为true。如果您希望在 moveC() 的第二次调用中获得在第一次调用中分配的值,则必须声明它

static int c = FALSE;

关于c - 如果语句不工作/未达到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28436472/

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