/*C语言的写法*/
const int size=15;
int arr[size];
for(i=0;i<size;i++)arr[i]=rand()%100;
/*C++的写法*/
#include stdlib.h
#include time.h /*时间产生的随机数更可爱*/
srand((unsigned) time(NULL));
int m=(int)((float)rand()/RAND_MAX * N); 分布更均匀
/*C语言的写法*/
const int size=15;
int arr[size];
for(i=0;i<size;i++)arr[i]=rand()%100;
/*C++的写法*/
#include stdlib.h
#include time.h /*时间产生的随机数更可爱*/
srand((unsigned) time(NULL));
int m=(int)((float)rand()/RAND_MAX * N); 分布更均匀