gpt4 book ai didi

c - 我在 do/while 循环中有一段时间,但它仍然告诉我我没有

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

这是我的代码

#include <stdio.h>
#include <cs50.h>
int main(void)
{
int n=0;
do
printf("Height of Pyramid:\n");
n = GetInt();
while (n>=0);
printf("you picked %i", n);
}

这是我的错误

mario.c:8:9: error: expected 'while' in do/while loop        n = GetInt();        ^mario.c:6:5: note: to match this 'do'    do     ^

最佳答案

您忘记包含大括号 {...} 。替换为:

do {
printf("Height of Pyramid:\n");
n = GetInt();
} while (n>=0);

关于c - 我在 do/while 循环中有一段时间,但它仍然告诉我我没有,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25171936/

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