gpt4 book ai didi

c - 错误:expected expression else in C

转载 作者:行者123 更新时间:2023-11-30 21:45:47 27 4
gpt4 key购买 nike

当我想在 while 中使用 else 时,出现错误。

ft_putnbr.c:27:2: error: expected expression
else
^
1 error generated.

我的代码是:

void    ft_putnbr(int nb)    //reprogram the function putnbr
{
while(nb >= 10)
{
ft_putnbr(nb / 10);
ft_putnbr(nb % 10);
}
else
{
ft_putchar('0' + nb);
}
}

不知道为什么会出现这个问题。你能帮我吗?

最佳答案

while..else 不是有效的 C 结构。

您的意思是if..else吗?

关于c - 错误:expected expression else in C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26238813/

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