Turbo C 阵列问题
我只是想问一些关于我的代码的事情。
#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 while 中的条件更改为以下内容:
while (temp[day++] > 0 && day < LIM)
。Change the condition in while to the following:
while (temp[day++] > 0 && day < LIM)
.