【发布时间】:2015-06-20 03:37:44
【问题描述】:
#include <iostream>
using namespace std;
// Range of numbers, handles input in which the first number is smaller than the second.
int main()
{
int max = 10;
int min = 0;
while(cin >> min)
{
if(min<max)
{
++min;
cout << "The number inputted is well in the RANGE: " << min << endl;
else
{
cout << "The number inputted is not in the RANGE: " << max << endl;
}
}
} // End of if.
}
发生了什么事?为什么这不起作用?我是 Stack 的新手,所以我尝试发布此内容,有什么帮助吗?
【问题讨论】:
-
这怎么行?请更准确。
-
如果这是您的实际代码,请查看它们没有正确匹配的大括号(现在我已经清理了您的格式)
标签: c++ if-statement declaration