给产生的随机数排序
产生0至99的十个随机数,然后赋值给一个数组,最后用冒泡排序
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void main()
{
int i;
srand((unsigned)time(NULL));
for (i=0;i<10;i++)
printf(" %d",rand() % 100);
printf("\n");
}
//这是产生随机数的那段程序
如何把产生的这个随机数赋值给一个数组就迷糊了