c语言:产生50个两位随机整数,并按五个一行的形式输出

日期:2021-11-03 07:01:19 人气:1

c语言:产生50个两位随机整数,并按五个一行的形式输出

#include "stdlib.h"
#include"stdio.h"
#include"time.h"
void main()
{
int n ,a[50],i,j,t;
srand(time (NULL));
for(i=0;i<50;i++)
{
a[i]=rand()%90+10;
    A+
热门评论