我正在尝试制作一个程序,当用户输入一些愚蠢的东西时,它不接受代码错误。比如输入一个整数的字符串,我不知道该做什么。我正在写随机的东西,因为它说我没有足够的细节,即使我已经写了整个段落。
void scoretoletter::letter() {
int a = 0;
int question;
while (a == 0) {
cout << "1.Rectangle" << endl;
cout << "2.Triangle" << endl;
cout << "3.Circle" << endl;
cout << "4.Exit" << endl;
float area;
float Width;
float Length;
float Height;
float base;
float radius;
int l;
cin >> question;
if (question == 1) {
cout << "Whats your length?" << endl;
cin >> Length;
if (cin.fail()) {
cout << "That is not valid try again" << endl;
}
else {
cout << "Whats your width?" << endl;
cin >> Width;
if (cin.fail()) {
cout << "That is not valid try again" << endl;
}
else {
if (Length == 0 || Width == 0 ) {
cout << "That is not valid try again." << endl;
system("pause");
}
else {
area = Length * Width;
cout << "The area is: " << area << endl;
}
}
}
}
else if (question == 2) {
cout << "What is the Base?" << endl;
cin >> base;
if (cin.fail()) {
cout << "That is not valid try again." << endl;
}
else {
cout << "What is the Height?" << endl;
cin >> Height;
if (cin.fail()) {
cout << "That is not valid try again." << endl;
}
else {
if (base == 0 || Height == 0 || cin.fail()) {
cout << "That is not valid try again." << endl;
system("pause");
}
else {
area = base * Height * .5;
cout << "The area is: " << area << endl;
}
}
}
}
else if (question == 3) {
cout << "What is the radius?" << endl;
cin >> radius;
if (radius == 0 || cin.fail()) {
cout << "That is not valid try again." << endl;
system("pause");
}
else {
area = radius * radius * 3.14;
cout << "The area is: " << area << endl;
}
}
else if (question == 4) {
a = 1;
}
else {
cout << "That is not valid try again." << endl;
}
system("pause");
}
}
答案 0 :(得分:3)
而不是使用这种深层嵌套丑陋的if-else语法,你可以使用return
指令更简单地编写。为避免重复,您还可以返回状态并循环直到成功。
enum result_status
{
RESULT_STATUS_OK,
RESULT_STATUS_INVALID,
RESULT_STATUS_DONE
}
void scoretoletter::askQuestions() {
while(true)
switch(letter())
{
RESULT_STATUS_OK:
system("pause");
continue;
RESULT_STATUS_INVALID:
cout << "That is not valid try again." << endl;
system("pause");
cin.clear();
continue;
RESULT_STATUS_DONE:
system("pause");
return;
}
}
enum result_status scoretoletter::letter() {
int question;
cout << "1.Rectangle" << endl;
cout << "2.Triangle" << endl;
cout << "3.Circle" << endl;
cout << "4.Exit" << endl;
float area;
float Width;
float Length;
float Height;
float base;
float radius;
int l;
cin >> question;
if (question == 1) {
cout << "Whats your length?" << endl;
cin >> Length;
if (cin.fail())
return RESULT_STATUS_INVALID;
cout << "Whats your width?" << endl;
cin >> Width;
if (cin.fail() || Length == 0 || Width == 0)
return RESULT_STATUS_INVALID;
area = Length * Width;
cout << "The area is: " << area << endl;
return RESULT_STATUS_OK;
}
if (question == 2) {
cout << "What is the Base?" << endl;
cin >> base;
if (cin.fail())
return RESULT_STATUS_INVALID;
cout << "What is the Height?" << endl;
cin >> Height;
if (cin.fail())
return RESULT_STATUS_INVALID;
if (base == 0 || Height == 0 || cin.fail()) {
return RESULT_STATUS_INVALID;
area = base * Height * .5;
cout << "The area is: " << area << endl;
return RESULT_STATUS_OK;
}
if (question == 3) {
cout << "What is the radius?" << endl;
cin >> radius;
if (radius == 0 || cin.fail()) {
return RESULT_STATUS_INVALID;
area = radius * radius * 3.14;
cout << "The area is: " << area << endl;
return RESULT_STATUS_OK;
}
if (question == 4)
return RESULT_STATUS_DONE;
return RESULT_STATUS_INVALID;
}
注意使用system("pause");
也是一个坏主意,你真的应该在自己的程序中编写自己的Press any key to continue
功能。