Turbo C 阵列问题

发布于 2024-11-08 19:33:56 字数 573 浏览 0 评论 0原文

我只是想问一些关于我的代码的事情。

#define LIM 40

main()
{
       int day=0;
       float temp[LIM];

       clrscr();

       do
       {
               printf("Enter temperature for day %d.", day);
               scanf("%f", &temp[day]);
       }
       while(temp[day++] > 0)
}

我正在使用 TurboC,此代码反复要求用户输入温度并将响应存储在数组 temp 中,直到输入 0 或更低的温度。我使用了 #define 指令来为标识符 LIM 赋予值 40,因为我想要这个程序接受最多 40 度的任意温度。但它实际上最多接受 48 度...我应该怎么做才能使其最多只能接受 40 度?

提前致谢

I just want to ask something about my code.

#define LIM 40

main()
{
       int day=0;
       float temp[LIM];

       clrscr();

       do
       {
               printf("Enter temperature for day %d.", day);
               scanf("%f", &temp[day]);
       }
       while(temp[day++] > 0)
}

I'm using TurboC, this code repeatedly asks the user to enter a temperature and stores the responses in the array temp, until a temperature of 0 or less is entered. I've used a #define directive to give the identifier LIM the value of 40 because I want this program to accept any number of temperatures up to 40. But It actually accepts up to 48... What should I do so that it could accept up to 40 only?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半透明的墙 2024-11-15 19:33:56

将 while 中的条件更改为以下内容:while (temp[day++] > 0 && day < LIM)

Change the condition in while to the following: while (temp[day++] > 0 && day < LIM).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文