我有一个4 x 4的板(16个方块的值为0)。我必须在这个板上选择一个随机的方块,并为这个方块生成一个随机值。
这是我的代码
#include <iostream>
#include <ctime>
#include <cstdlib>
#include <sys/time.h>
using namespace std;
void pickSquare(int [][4]);
void printSquare(int [][4]);
int main() {
int a[4][4];
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
a[i][j] = 0;
for (int i = 0; i < 10; i++)
{
cout << endl << i << endl;
pickSquare(a);
printSquare(a);
}
}
void pickSquare(int a[][4]) {
struct timeval t1;
gettimeofday(&t1, NULL);
srand(t1.tv_usec * t1.tv_sec);
int randValue = rand() % 10;
if (randValue == 0 || randValue == 1) randValue = 4;
else randValue = 2;
int count = 0;
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
if (a[i][j] == 0) ++count;
int random = rand() % count;
cout << endl << "count = " << count;
cout << endl << "random = " << random;
count = 0;
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++)
if (a[i][j] == 0) {
if (count == random) {
a[i][j] = randValue;
cout << endl << " " << i << " " << j << endl;
break;
}
++count;
}
if (count == random) break;
}
}
void printSquare(int a[][4]) {
cout << endl;
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++)
cout << a[i][j] << " ";
cout << endl;
}
}
函数pickSquare(int [][4])
用于选择随机Square并生成随机值。
函数printSquare(int [][4])
用于打印板4 x 4。
我认为一切都很好但是当我运行我的程序时,有时程序不会选择任何方格。因此,在完成功能后,电路板仍然是相同的。
任何人都可以解释原因吗?
答案 0 :(得分:1)
我认为问题是
if (count == random) break;
在内循环完成时,您可以在此处查看未经测试的计数。