可能是一个简单的答案,但这一直困扰着我一段时间。我似乎无法设置最大数量。例如,我向用户询问本月使用的小时数,最长小时数不能超过744.如何设置此最大数量?在此先感谢您的帮助。
答案 0 :(得分:1)
使用if语句:
if (hours < max_hours) {
// Do stuff
}
else {
std::cout << "Invalid Hours";
}
答案 1 :(得分:1)
int main() {
int workhours;
std::cout << "Please enter your workhours: ";
std::cin >> workhours;
if (workhours < max_hours) {
//good, do your stuff
else {
std::cout << "Invalid Working Hours";
std::cout << "Please enter your real workhours: ";
std::cin >> workhours;
}}
}