#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int srnad(void){
int data;
data=rand()%1000+1;
return data;
}
int main(){
int i,j;
srand(time(0));
for(i=1;i<=10;i++){
for(j=1;j<=10;j++){
printf("%5d",srnad());
}
printf("\n");
}
system("pause");
return 0;
}
沒有留言:
張貼留言