用随机函数产生10个0至99大小的整数存放到一维数组中,并输出。
【输入】 无
【输出】 10个0至99大小的随机整数
【样例输入】无
【样例输出】 10个随机整数
解题C++代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int A[10];
srand(time(0));
for(int i=0;i<=9;i++)
{
A[i]=rand()%100;
}
for(int j=0;j<=9;j++)
{
cout<<A[j]<<" ";
}
}