C++生成10个1~50的随机数,存入整型数组a中,并输出数组中的元素

如题所述

#include<time.h>
#include<stdlib.h>
#include<stdio.h>
int main()
{
int i,a[10],m,t=0,s=0;
float n;
srand((unsigned)time( NULL ) );
for(i=0;i<10;i++)
 {
 
 m=rand()%50+1;
a[i]=m;
}
for(i=0;i<10;i++)
 {
printf("%d  ",a[i]);
}

return 0;
}

温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答