gpt4 book ai didi

c - 错误: use of undeclared identifier

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

我正在尝试运行此代码,但我不断收到:

:21:20: error: use of undeclared identifier 'r'
for(int s = h - r; s > 0;s--)

但我似乎无法弄清楚为什么会收到错误。有人可以帮我吗?

#include <cs50.h>
#include <stdio.h>

int main(void)
{
int h;
do
{
printf("please give me a positive int between 1 and 23: ");
h = GetInt();
}
while (h < 1 || h > 23);
//get int and store it


for(int r = 0; r < h; r++)
{
printf("#");
}

for(int s = h - r; s > 0;s--)
{
printf(" ");
}
}

最佳答案

你最好声明r就在main之后从您当前声明的代码开始 r仅适用于for环形。

int main() {
int r=0, h=0;

// add other code here
// don't forget h=GetInt()

for(r = 0; r < h; r++)
{
printf("#");
}

for(int s = h - r; s > 0;s--)
{
printf(" ");
}
}

关于c - 错误: use of undeclared identifier,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29774795/

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