gpt4 book ai didi

比较C中的两个矩阵

转载 作者:太空宇宙 更新时间:2023-11-04 07:11:43 24 4
gpt4 key购买 nike

当我尝试比较两个矩阵时遇到了一个大问题。每次我运行程序时,它都会打印并设置两个具有相同值的矩阵。但是您可以在下面的代码中看到,我已经放置了 2 个带有随机数的不同矩阵,但它在两个矩阵中始终打印相同的数字...失败在哪里?

#include <stdio.h>
#include <time.h>

void further(int matrix[][3]);
void check(int mat[][3], int another[][3]);

int main (){
int mat[3][3];
int another[3][3];

further(mat);
further(another);
check(mat,another);

system("pause");
return 0;
}

void further(int matrix[][3]){
srand(time(NULL));
int i,j,aux;
for(i=0; i<3; i++){
for(j=0; j<3;j++){
aux=rand()%10;
matrix[i][j]=aux;
}
}
}

void check(int mat[][3], int another[][3]){
int i,j,aux;
aux = 0;
for(i=0; i<3 && aux == 0; i++){
for(j=0; j<3 && aux == 0; j++){
if(mat[i][j] != another[i][j]){
aux = 1;
}
}
}
for(i=0; i<3; i++){
for(j=0; j<3; j++){
printf("%i ",mat[i][j]);
}
printf("\n");
}
printf("\n");
for(i=0; i<3; i++){
for(j=0; j<3; j++){
printf("%i ",another[i][j]);
}
printf("\n");
}
if(aux==0){
printf("Those matrix are equal.\n\n");
}
else{
printf("Those matrix are NOT equal.\n\n");
}
}

最佳答案

正如@user3121023 在问题评论中所说,您需要将 srand(time(NULL)); 移动到您的主要功能。

你可以找到一个很好的解释为什么它是必要的here ;重点如下:

Seed is usually taken from the current time, which are the seconds, as in time(NULL), so if you always set the seed before taking the random number, you will get the same number as long as you call the srand/rand combo multiple times in the same second.

希望这对您有所帮助。

关于比较C中的两个矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27877182/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com