第2个回答 2009-04-22
下边给的是用C++实现的
#include<iostream>
using namespace std;
#include<stdio.h>
void main()
{
int a[100],i=0,b;
while(i<100)
{
b=rand();
if(b<100)
{
a[i]=b;i++;
}
}
cout<<"小于100的100个随机数:"<<endl;
for(int j=0;j<100;j++)
{
cout<<a[j]<<'\t';
}
cout<<"输出被3除余2的数"<<endl;
for(int k=0;k<100;k++)
{
if(a[k]%3==2)
cout<<a[k]<<'\t';
}
}