Respostas
respondido por:
1
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(){
int matriz[10][10],c,x;
srand(time(NULL));
for(x=0;x<10;x++){
for(c=0;c<10;c++){
matriz[x][c]=rand();
}
}
for(x=0;x<10;x++){
for(c=0;c<10;c++){
printf("[%d] ",matriz[x][c]);
}
printf("\n");
}
system("PAUSE");
}
#include <stdlib.h>
#include <time.h>
int main(){
int matriz[10][10],c,x;
srand(time(NULL));
for(x=0;x<10;x++){
for(c=0;c<10;c++){
matriz[x][c]=rand();
}
}
for(x=0;x<10;x++){
for(c=0;c<10;c++){
printf("[%d] ",matriz[x][c]);
}
printf("\n");
}
system("PAUSE");
}
Perguntas similares
7 anos atrás
9 anos atrás