gpt4 book ai didi

c++ - 循环中的随机函数

转载 作者:行者123 更新时间:2023-11-28 04:30:19 25 4
gpt4 key购买 nike

<分区>

我是 C++ 新手。我写了一个返回随机数组的函数,但是当我在 for 循环中运行这个函数时,它只给出相同的数组。请帮助我。

#include <iostream>
#include<headers.h>
#include<cstdlib>
#include <ctime>
#include<stdlib.h>
#include<math.h>

using namespace std;

int * getRandom( ) {
static int r[8];
int inicio = 0;
int fin = 7;
// set the seed
srand( (unsigned)time( NULL ) );

for (int i = 0; i < 8; ++i) {
r[i] = rand()%8;
}

return r;
}
int main()
{
int *r;
r = getRandom();
int *p = NULL;

for(int i=0; i<10; i++){
p = getRandom();
cout<<"--------"<<endl;
for(int j=0; j<8; j++){
cout<<p[j];
}
cout<<endl<<"--------"<<endl;
}

return 0;
}

this is the execution

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