This commit is contained in:
Vieira Enzo 2021-11-16 15:28:40 +01:00
parent 6906011d53
commit ea8e022f84
2 changed files with 5 additions and 7 deletions

Binary file not shown.

View File

@ -1,20 +1,18 @@
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(int argc, char * argv[]){
int matrice[10][20];
int i,j,x;
for (x=0;x<=10;x++){
srand(time(NULL));;
int k,l;
int i,j,x,k,l;
for (i=0;i<10;i++){
for(j=0;j<20;j++){
k = rand()%10;
l = rand()%20;
matrice[i][j]=1;
matrice[k][j]=0;
}
}
for (x=0;x<=20;x++){
srand(time(NULL));
matrice[rand()%10][rand()%20]=0;
}
for (i=0;i<10;i++){
for(j=0;j<20;j++){