阅读量:0
在C语言中,可以使用rand()函数来生成随机数,然后将随机数存储到数组中来生成随机数组。具体步骤如下:
引入头文件
#include <stdlib.h>
。使用srand()函数来设置随机数种子。可以使用time()函数来获取当前时间作为种子,以确保每次运行程序时生成不同的随机数序列。例如:
srand(time(NULL));
。定义一个数组,并分配足够的内存空间。例如:
int arr[10];
。使用for循环来生成随机数,并将随机数存储到数组中。例如:
for (int i = 0; i < 10; i++) { arr[i] = rand(); }
。
完整的示例代码如下:
#include <stdio.h> #include <stdlib.h> #include <time.h> int main() { srand(time(NULL)); int arr[10]; for (int i = 0; i < 10; i++) { arr[i] = rand(); } printf("随机数组:\n"); for (int i = 0; i < 10; i++) { printf("%d ", arr[i]); } printf("\n"); return 0; }
运行程序后,会生成一个包含10个随机数的数组,并将数组打印出来。每次运行程序都会生成不同的随机数序列。