oui
This commit is contained in:
parent
6906011d53
commit
ea8e022f84
Binary file not shown.
@ -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++){
|
||||
|
Loading…
Reference in New Issue
Block a user