1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| #include<stdbool.h>
#include <stdio.h>
#include <stdlib.h>
bool test_inclu(int i, int j)
{
//bool ex=true;
int k=1;
int s[30][30],c,l;
do {
if ((s[i][k]==0) && (s[j][k]==1))
{
return false;
}
else
{
return true;
}
k=k+1;
}
while ((k<=c) && (true));
//test_inclu=ex;
return test_inclu(i,j);
}
int main(int argc, char *argv[])
{
int s[30][30],i,j,k,l,c;
printf("entrer le nbr de lignes:\t");
scanf("%d", &l);
printf("entrer le nbr de colonne:\t");
scanf("%d", &c);
for(i=0;i<l;i++)
{
for(j=0;j<c;j++)
{
printf("element s[%d][%d] est:\t",i,j);
scanf("%d",&s[i][j]);
}
}
for(i=0;i<l;i++)
{
for(j=i+1;j<c;j++)
{
test_inclu(i, j);
}
}
system("PAUSE");
return 0;
} |
Partager