Como gerar 3 valores aleatórios (rand) em uma matriz 10X10 na linguagem c?
Soluções para a tarefa
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 interessantes
Matemática,
8 meses atrás
Matemática,
1 ano atrás
Matemática,
1 ano atrás
Matemática,
1 ano atrás
Física,
1 ano atrás