我必须继续生成10 x 10的数组,直到该数组的对角线包含大于或等于7的数字。但是,尝试次数不应增加一百万。如果尝试次数少于一百万,则当您打印出对角线数字大于7且尝试次数的数组时。这是我的代码,问题是我的代码始终显示尝试次数超过一百万。有人可以看一下代码,然后告诉我为什么它不能正常工作吗?
int i, j, matrix2[10][10], attempts, count = 0;
for (attempts=0; attempts<1000000; attempts++)
{
for (i=0; i<10; i++)
{
for (j=0; j<10; j++)
{
matrix2[i][j] = rand()%10;
if(i==j&&matrix2[i][j] >= 7)
count++;
}
}
}
printf("\n\nNumber of attempts : %d", count);
if (attempts >= 1000000)
printf("\n\nNumber of attempts exceed one million :\t ACTION TERMINATED!!!");
else
{
for (i=0; i<10; i++)
{
for (j=0; j<10; j++)
if (i==j&&matrix2[i][j] >= 7)
printf("%5d",matrix2[i][j]);
printf("\n\n");
}
}
最佳答案
简单:)
当尝试次数达到1000000时,第一个循环将结束:
attempts = 999998; //continue
attempts = 999999; //continue
attempts = 1000000; //stop
然后,您正在检查尝试次数是否大于或等于1000000,并且它等于:)
您应该检查它是否更大:
if (attempts > 1000000)
问候,
卡茂