我的代码有问题。我有一个由用户调整大小的动态框架,他需要在这个框架中输入一个单元格的位置。我的问题是,我怎样才能确保这个职位是有效的,或者它还没有被录入?
这是代码:
for (i = 0; i < a; i++)
{
while (x < 1 || y < 1)
{
printf("Entrez les coordonnees de la cellule %d: ", i+1); //The user gives the position of the cell
scanf("%d %d", &x, &y);
}
tab[x - 1][y - 1] = 1; //We affect 1 to the cell given by the user
}