This commit is contained in:
Vieira Enzo 2021-11-16 15:09:30 +01:00
parent c485bfd063
commit 6906011d53
2 changed files with 9 additions and 2 deletions

Binary file not shown.

View File

@ -3,15 +3,22 @@
int main(int argc, char * argv[]){
int matrice[10][20];
int i,j;
int i,j,x;
for (x=0;x<=10;x++){
srand(time(NULL));;
int 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 (i=0;i<10;i++){
for(j=0;j<20;j++){
printf("%d",matrice[1][1]);
printf("%d",matrice[i][j]);
}printf("\n");
}
printf("\n");