#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#define random(x) rand()%x
int main(){
int i,j,x;
printf("隨機數的最大值為: ");
scanf("%d",&x);
srand(time(0));
for(i=1;i<=5;i++){
for(j=1;j<=4;j++){
printf("%5d ",random(x)+1);
}
printf("\n");
}
system("pause");
return 0;
}
沒有留言:
張貼留言