选择一个随机方块并生成一个随机数
Pick a random square and generate a random number
我有一块 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])
用于选择一个随机方块并生成一个随机值。
函数 printSquare(int [][4])
用于打印 4 x 4 的电路板。
我认为一切都很好,但是当我 运行 我的程序时,有时程序不选择任何正方形。所以完成功能后,板子还是老样子
谁能解释为什么?
我认为问题是
if (count == random) break;
在这里你可以在内部循环完成时跳出一个未经测试的计数。
我有一块 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])
用于选择一个随机方块并生成一个随机值。
函数 printSquare(int [][4])
用于打印 4 x 4 的电路板。
我认为一切都很好,但是当我 运行 我的程序时,有时程序不选择任何正方形。所以完成功能后,板子还是老样子
谁能解释为什么?
我认为问题是
if (count == random) break;
在这里你可以在内部循环完成时跳出一个未经测试的计数。