这将检查输入的字符串是否是有效的许可证号。有效数字不能有任何小写字母或空格。如果我输入“cat”,它应该看到字符“c”较低,因此它应该将bool isValid设置为false,从循环中中断,然后打印“cat is not a valid license number”。但是,它不是,它只是使bool对我在开始时设置的值有效,这是真的。因此,如果我将它初始化为false并输入“cat”,isValid仍然是false。
int main()
{
// Input
cout << "Enter a valid license number: ";
string license_number;
getline(cin, license_number);
cout << endl;
// Initialize boolean
bool isValid = true;
// Loop to check for space or lowercase
for (int i = 0; i < license_number.size(); i++)
{
if (isspace(license_number[i]) || islower(license_number[i]))
{
bool isValid = false;
break;
}
else
bool isValid = true;
}
// Output
if (isValid == true)
cout << license_number << " is a valid license number." << endl;
else
cout << license_number << " is not a valid license number." << endl;
return 0;
}
问题就在这里:
bool isValid = false;
break;
您不会更改
除此之外,您还可以移除此部件
else
bool isValid = true;
因为当到达这部分代码时,
// Loop to check for space or lowercase
for (int i = 0; i < license_number.size(); i++)
{
if (isspace(license_number[i]) || islower(license_number[i]) )
{
cout << license_number << " is not a valid license number." << endl;
return 0;
}
}
cout << license_number << " is a valid license number." << endl;
return 0;
另外,如果您有时间,请看看为什么“使用名称空间标准”被认为是糟糕的实践?。
您只需从for循环中删除下)&;一旦命令流走出定义它的块,这个局部定义就不复存在。
在该块之外,定义