验证用户输入无效

时间:2013-04-08 09:51:01

标签: c++

我想知道是否有人可以提供帮助,我有以下代码,我想添加验证以确保用户无法输入小于1或大于9的数字但是我无法让它工作,任何人都可以帮助谢谢。

我试过把

if(x >=1 && x <= 9) 

关于波纹管代码内容的声明,但不起作用。

for(int x = 0;x < 9; x++) 

我的代码:

void interactiveSudokuFill(int grid1[9][9]){

for(int y=0;y<9;y++){
 for(int x=0;x<9;x++){
    string theString;
    cout<<"Write the value to place in Sudoku["<<y<<"]["<<x<<"] :"<<endl;
    std::getline(cin,theString);
    int nr=atoi(theString.c_str());
    grid1[y][x]=nr;
    system("cls");

}

}
}

2 个答案:

答案 0 :(得分:1)

x不是用户输入的值。您应该检查nr

if(nr >= 1 && nr <= 9) {
  grid1[y][x] = nr;
}

通常,从int中提取std::cin的方法如下:

int nr;
std::cin >> nr;

如果您想继续询问用户新值,直到他们输入一个既是整数又是正整数的值:

int nr = 0;
do {
  std::cin >> nr;
  std::cin.clear();
} while(nr < 1 || nr > 9);
grid[y][x] = nr;

答案 1 :(得分:0)

试试这个:

void interactiveSudokuFill(int grid1[9][9]){

for(int y=0;y<9;y++){
 for(int x=0;x<9;x++){
string theString;
cout<<"Write the value to place in Sudoku["<<y<<"]["<<x<<"] :"<<endl;
std::getline(cin,theString);
int nr=atoi(theString.c_str());
if(nr>=1 && nr<=9){
     grid1[y][x]=nr;
}
else{
 cout<<"Invalid number."<<endl;
 x--;
}
system("cls");

}

}
}

x-- and surely aren't the most correct way of doing things but it works...