我需要从用户那里获取给定范围之间的输入整数。我需要让他们低和高。但是循环并没有停止,我不知道为什么。我以为我的条件很好,但循环不会停止。
int obtainNumberBetween (const char* descriptionCPtr, int low, int high) {
char line[MAX_LINE];
int entry;
// #define MAX_LINE 256
// YOUR CODE HERE
do
{
printf("Please enter the lowest number in the range (%d-%d):n " ,RANGE_LOWEST ,RANGE_HIGHEST);
fgets(line, 256, stdin);
low = atoi(line);
printf ("The value entered is %dn", low);
}
while ( (entry < low) || (entry > high) );
return(entry);
}
它应该是什么的示例输出:
Please enter the lowest number in the range (0-32767): -6
Please enter the lowest number in the range (0-32767): 1
Please enter the highest number in the range (1-32767): 0
Please enter the highest number in the range (1-32767): 32768
Please enter the highest number in the range (1-32767): 512
您的entry
变量未初始化。所以这一行正在调用一个未定义的行为:
while ( (entry < low) || (entry > high) )
也许您应该将用户输入分配给entry
而不是low
。
您需要
为entry
赋值。循环不会停止,因为尚未初始化entry
因此 while 循环的条件始终为真。
改变 low = atoi(line);
自
entry = atop(line);
,然后添加
low = atoi(entry);
在 while 循环之后。