IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

 C Discussion :

Aide pour programme en C: Sondage de personnes


Sujet :

C

  1. #1
    Candidat au Club
    Profil pro
    Inscrit en
    Octobre 2008
    Messages
    3
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Octobre 2008
    Messages : 3
    Points : 2
    Points
    2
    Par défaut Aide pour programme en C: Sondage de personnes
    Bonjour,

    Alors, voilà je sollicite votre aide pour un programme que je n'arrive pas à boucler : /


    Description :

    il s'agit ici de réaliser un sondage sous forme d'enregistrement regroupant :

    -le nom

    -le prénom

    -l'âge

    -le sexe

    -le choix ( 5 titres parmi 50 ( les titres sont représentés par des numéros )

    de la personne sondé

    Ensuite de classer les titres celons leurs popularités et d'afficher le top 3.

    Et finalement de permettre à l'utilisateur de savoir pour un titre donné sa position ainsi que le nom , le prénom , l'âge et le sexe des personnes qui l'ont choisie en 1er choix.


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    typedef struct personne
    
    {	char sexe;
    	int  age;
    	char * nom;
    	char * prenom;
    	int *  choix;
    } tpersonne;
    
    //=======================================================================================
    {
        tpersonne * la_personne_allouee;
        la_personne_allouee = (tpersonne *)malloc(sizeof(tpersonne));    
           if(la_personne_allouee == NULL)
           {
            printf("\nImpossible d'allouer en memoire le type personne\n");
            return NULL;
           }
       return la_personne_allouee; 
    }
     
     char * Saisie_Nom()
    {
                 char nom_tmp[30];
                 int nbr_caractere; 
                 char * nom_a_renvoyer; 
                 
                printf("\nSaisir le nom de la personne :\n");
                scanf("%s", nom_tmp);
                nbr_caractere = strlen(nom_tmp);
                nom = Alloue_Nom(nbr_caractere);          
                return nom;
         }
    
     char *  Alloue_Nom(int nbr_caractere){
               char * nom;
               nom = (char *)malloc(sizeof(char * nbr_caractere));
              return nom;
    }
    
    //======================================================================================
    
    char * Saisie_Prenom()
    {
                 char prenom_tmp[30];
                 int nbr_caractere; 
                 char * prenom_a_renvoyer; 
                 
                printf("\nSaisir le prenom de la personne :\n");
                scanf("%s", prenom_tmp);
                nbr_caractere = strlen(prenom_tmp);
                prenom = Alloue_Prenom(nbr_caractere);          
                return prenom;
         }
    
     char *  Alloue_Prenom(int nbr_caractere){
               char * prenom;
               prenom = (char *)malloc(sizeof(char * nbr_caractere));
              return prenom;
    }
    
    //========================================================================================================================================
    
    char * Saisie_Age()
    {
                 int age_tmp[30];
                 int nbr_chiffre; 
                 int * age_a_renvoyer; 
                 
                printf("\nSaisir l'âge de la personne :\n");
                scanf("%s", age_tmp);
                nbr_chiffre = strlen(age_tmp);
                age = Alloue_Age(nbr_chiffre);          
                return nom;
         }
    
     char *  Alloue_Age(int nbr_caractere){
               int * age;
               age = (char *)malloc(sizeof(int * nbr_chiffre));
              return age;
    }
    
    //========================================================================================================================================
    
    char * Saisie_Sexe()
    {
                 char sexe_tmp[30];
                 int nbr_caractere; 
                 char * sexe_a_renvoyer; 
                 
                printf("\nSaisir le sexe de la personne :\n");
                scanf("%s", sexe_tmp);
                nbr_caractere = strlen(sexe_tmp);
                sexe = Alloue_Nom(nbr_caractere);          
                return sexe;
         }
    
     char *  Alloue_Sexe(int nbr_caractere){
               char * sexe;
               sexe = (char *)malloc(sizeof(char * nbr_caractere));
              return sexe;
    }
    
    //========================================================================================================================================
    
    char * Saisie_Choix()
    {
                 int choix_tmp[30];
                 int nbr_chiffre; 
                 int * choix_a_renvoyer; 
                 
                printf("\nSaisir le choix de la personne :\n");
                scanf("%s", choix_tmp);
                nbr_chiffre = strlen(choix_tmp);
                choix = Alloue_Choix(nbr_chiffre);          
                return choix;
         }
    
    
     char *  Alloue_Choix(int nbr_caractere){
               int * choix;
               choix = (char *)malloc(sizeof(int * nbr_chiffre));
              return choix;
    
    }
    
    //========================================================================================================================================
    void saisie (tpersonne t[], int n) 
    {
    int i;
    int j;
    for (i=0;i<n;i++)
     {
      printf("votre nom?\n");
      gets (t[i].nom);
      printf("votre prenom?\n");
      gets (t[i].prenom);
      printf("votre sexe?\n");
      gets (t[i].sexe);
      printf("votre age?\n");
      scanf("%i",&t[i].age); 
      for (j=0;j<5;j++)
      {
       printf("quelle est votre choix?\n");
       scanf("%i",t[j].choix);
      }
     gets(s);
     }
    }
    //========================================================================================================================================
    
    float titreposition ( tpersonne t[], int titre, int position, int n) /* pour savoir combien de fois tel titre a été cité en tel dans le sondage */
    {
    int i;
    int cpt=0;
    for (i=0;i<n;i++)
     {
      if (t[i].choix[position-1] == titre) 
      {
       cpt=cpt+1;
      }
     }
    return cpt;
    }
    
    //========================================================================================================================================
    
    void calculpop (tpersonne t[] , int t1[50], int n  ) /* Classement des titres les plus cités*/
    {
    int i;
    int j;
    int titre;
    const int point[5]={1,2,3,4,5};
    for (i=0;i<50;i++)
    {
     t1[i]=0;
    }
    for (i=0;i<n;i++)
    {
     for(j=0;j<5;j++)
     {
      titre=t[i].choix[j]; 
      t1[titre-1]=t1[titre-1]+point[j];
     }
    }
    }
    
    //========================================================================================================================================
    
    float indiceplusgrand(int pop[], int n) /* Classe les titres du plus cités au moin cités*/
    {
    int i;
    int imax=0;
    for (i=0;i<n;i++)
     {
      if (pop[i]>pop[imax])
      {
       imax=i;
      }
     }
    return imax;
    }
    
    //========================================================================================================================================
    
    void top3 ( int pop[], int pop3[3], int n ) /* top 3 des titres du sondage*/
    {
    int i;
    for (i=0;i<n;i++)
    {
    pop3[i]=indiceplusgrand(pop, n);
     pop[pop3]=0;
     }
    }
    //========================================================================================================================================
    int main () /* Action principale*/
    {
    int pop[50];
    int pop3[3];
    int position;
    int titre;
    int nb;
    tpersonne * lib; 
    tpersonne * sond; 
    lib=(tpersonne*)malloc(nb*sizeof(tpersonne));
    saisie (sond,nb);
    calculpop (sond,pop,nb);
    top3 (sond,pop3,nb);
    printf("Recherche d'un titre en position donnée\n");
    printf("entrez un titre");
    scanf("%i",&titre);
    printf("entrez la position du titre\n");
    scanf("%i",&position);
    printf("le titre %i",titre," à été cité %i", titreposition(sond,titre,pop,nb),"en position %i",position);
    return 0;
    }





    Néanmoins lorsque je compile j'ai plusieurs erreurs mais je ne vois pas lesquelles
    Si quelqu'un peut m'aider je le remercie d'avance

  2. #2
    Expert éminent sénior
    Avatar de Emmanuel Delahaye
    Profil pro
    Retraité
    Inscrit en
    Décembre 2003
    Messages
    14 512
    Détails du profil
    Informations personnelles :
    Âge : 67
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Retraité

    Informations forums :
    Inscription : Décembre 2003
    Messages : 14 512
    Points : 20 985
    Points
    20 985
    Par défaut
    Citation Envoyé par TheFullMetal Voir le message
    Néanmoins lorsque je compile j'ai plusieurs erreurs mais je ne vois pas lesquelles
    Moi, je vois assez bien :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
     
     
    -------------- Build: Debug in hello ---------------
     
    Compiling: main.c
    Linking console executable: bin\Debug\hello.exe
    C:\dev\hello\main.c:10: error: syntax error before '/' token
    C:\dev\hello\main.c:13: warning: type defaults to `int' in declaration of `la_personne_allouee'
    C:\dev\hello\main.c:13: warning: implicit declaration of function `malloc'
    C:\dev\hello\main.c:13: warning: initialization makes integer from pointer without a cast
    C:\dev\hello\main.c:13: error: initializer element is not constant
    C:\dev\hello\main.c:13: warning: data definition has no type or storage class
    C:\dev\hello\main.c:14: error: syntax error before "if"
    C:\dev\hello\main.c:23: warning: function declaration isn't a prototype
    C:\dev\hello\main.c: In function `Saisie_Nom':
    C:\dev\hello\main.c:28: warning: implicit declaration of function `printf'
    C:\dev\hello\main.c:29: warning: implicit declaration of function `scanf'
    C:\dev\hello\main.c:30: warning: implicit declaration of function `strlen'
    C:\dev\hello\main.c:31: error: `nom' undeclared (first use in this function)
    C:\dev\hello\main.c:31: error: (Each undeclared identifier is reported only once
    C:\dev\hello\main.c:31: error: for each function it appears in.)
    C:\dev\hello\main.c:31: warning: implicit declaration of function `Alloue_Nom'
    C:\dev\hello\main.c:26: warning: unused variable `nom_a_renvoyer'
    C:\dev\hello\main.c: At top level:
    C:\dev\hello\main.c:35: error: conflicting types for 'Alloue_Nom'
    C:\dev\hello\main.c:31: error: previous implicit declaration of 'Alloue_Nom' was here
    C:\dev\hello\main.c: In function `Alloue_Nom':
    C:\dev\hello\main.c:37: error: syntax error before "nbr_caractere"
    C:\dev\hello\main.c: At top level:
    C:\dev\hello\main.c:35: warning: unused parameter 'nbr_caractere'
    C:\dev\hello\main.c:41: error: syntax error before '/' token
    C:\dev\hello\main.c:49: error: syntax error before string constant
    C:\dev\hello\main.c:49: warning: type defaults to `int' in declaration of `printf'
    C:\dev\hello\main.c:49: warning: function declaration isn't a prototype
    C:\dev\hello\main.c:49: warning: conflicting types for built-in function 'printf'
    C:\dev\hello\main.c:49: warning: data definition has no type or storage class
    C:\dev\hello\main.c:50: error: syntax error before string constant
    C:\dev\hello\main.c:50: warning: type defaults to `int' in declaration of `scanf'
    C:\dev\hello\main.c:50: warning: function declaration isn't a prototype
    C:\dev\hello\main.c:50: warning: conflicting types for built-in function 'scanf'
    C:\dev\hello\main.c:50: warning: data definition has no type or storage class
    C:\dev\hello\main.c:51: warning: type defaults to `int' in declaration of `nbr_caractere'
    C:\dev\hello\main.c:51: error: `prenom_tmp' undeclared here (not in a function)
    C:\dev\hello\main.c:51: error: initializer element is not constant
    C:\dev\hello\main.c:51: warning: data definition has no type or storage class
    C:\dev\hello\main.c:52: warning: type defaults to `int' in declaration of `prenom'
    C:\dev\hello\main.c:52: warning: implicit declaration of function `Alloue_Prenom'
    C:\dev\hello\main.c:52: error: initializer element is not constant
    C:\dev\hello\main.c:52: warning: data definition has no type or storage class
    C:\dev\hello\main.c:53: error: syntax error before "return"
    C:\dev\hello\main.c:56: error: conflicting types for 'Alloue_Prenom'
    C:\dev\hello\main.c:52: error: previous implicit declaration of 'Alloue_Prenom' was here
    C:\dev\hello\main.c:56: error: conflicting types for 'Alloue_Prenom'
    C:\dev\hello\main.c:52: error: previous implicit declaration of 'Alloue_Prenom' was here
    C:\dev\hello\main.c: In function `Alloue_Prenom':
    C:\dev\hello\main.c:58: error: syntax error before "nbr_caractere"
    C:\dev\hello\main.c: At top level:
    C:\dev\hello\main.c:56: warning: unused parameter 'nbr_caractere'
    C:\dev\hello\main.c:62: error: syntax error before '/' token
    C:\dev\hello\main.c:70: error: syntax error before string constant
    C:\dev\hello\main.c:70: warning: type defaults to `int' in declaration of `printf'
    C:\dev\hello\main.c:70: warning: function declaration isn't a prototype
    C:\dev\hello\main.c:70: warning: data definition has no type or storage class
    C:\dev\hello\main.c:71: error: syntax error before string constant
    C:\dev\hello\main.c:71: warning: type defaults to `int' in declaration of `scanf'
    C:\dev\hello\main.c:71: warning: function declaration isn't a prototype
    C:\dev\hello\main.c:71: warning: data definition has no type or storage class
    C:\dev\hello\main.c:72: warning: type defaults to `int' in declaration of `nbr_chiffre'
    C:\dev\hello\main.c:72: error: `age_tmp' undeclared here (not in a function)
    C:\dev\hello\main.c:72: error: initializer element is not constant
    C:\dev\hello\main.c:72: warning: data definition has no type or storage class
    C:\dev\hello\main.c:73: warning: type defaults to `int' in declaration of `age'
    C:\dev\hello\main.c:73: warning: implicit declaration of function `Alloue_Age'
    C:\dev\hello\main.c:73: error: initializer element is not constant
    C:\dev\hello\main.c:73: warning: data definition has no type or storage class
    C:\dev\hello\main.c:74: error: syntax error before "return"
    C:\dev\hello\main.c:77: error: conflicting types for 'Alloue_Age'
    C:\dev\hello\main.c:73: error: previous implicit declaration of 'Alloue_Age' was here
    C:\dev\hello\main.c:77: error: conflicting types for 'Alloue_Age'
    C:\dev\hello\main.c:73: error: previous implicit declaration of 'Alloue_Age' was here
    C:\dev\hello\main.c: In function `Alloue_Age':
    C:\dev\hello\main.c:79: error: syntax error before "nbr_chiffre"
    C:\dev\hello\main.c:79: warning: assignment from incompatible pointer type
    C:\dev\hello\main.c:80: warning: return from incompatible pointer type
    C:\dev\hello\main.c: At top level:
    C:\dev\hello\main.c:77: warning: unused parameter 'nbr_caractere'
    C:\dev\hello\main.c:83: error: syntax error before '/' token
    C:\dev\hello\main.c:91: error: syntax error before string constant
    C:\dev\hello\main.c:91: warning: type defaults to `int' in declaration of `printf'
    C:\dev\hello\main.c:91: warning: function declaration isn't a prototype
    C:\dev\hello\main.c:91: warning: data definition has no type or storage class
    C:\dev\hello\main.c:92: error: syntax error before string constant
    C:\dev\hello\main.c:92: warning: type defaults to `int' in declaration of `scanf'
    C:\dev\hello\main.c:92: warning: function declaration isn't a prototype
    C:\dev\hello\main.c:92: warning: data definition has no type or storage class
    C:\dev\hello\main.c:93: warning: type defaults to `int' in declaration of `nbr_caractere'
    C:\dev\hello\main.c:93: error: redefinition of 'nbr_caractere'
    C:\dev\hello\main.c:51: error: previous definition of 'nbr_caractere' was here
    C:\dev\hello\main.c:93: error: `sexe_tmp' undeclared here (not in a function)
    C:\dev\hello\main.c:93: error: initializer element is not constant
    C:\dev\hello\main.c:93: warning: data definition has no type or storage class
    C:\dev\hello\main.c:94: warning: type defaults to `int' in declaration of `sexe'
    C:\dev\hello\main.c:94: warning: initialization makes integer from pointer without a cast
    C:\dev\hello\main.c:94: error: initializer element is not constant
    C:\dev\hello\main.c:94: warning: data definition has no type or storage class
    C:\dev\hello\main.c:95: error: syntax error before "return"
    C:\dev\hello\main.c: In function `Alloue_Sexe':
    C:\dev\hello\main.c:100: error: syntax error before "nbr_caractere"
    C:\dev\hello\main.c: At top level:
    C:\dev\hello\main.c:98: warning: unused parameter 'nbr_caractere'
    C:\dev\hello\main.c:104: error: syntax error before '/' token
    C:\dev\hello\main.c:112: error: syntax error before string constant
    C:\dev\hello\main.c:112: warning: type defaults to `int' in declaration of `printf'
    C:\dev\hello\main.c:112: warning: function declaration isn't a prototype
    C:\dev\hello\main.c:112: warning: data definition has no type or storage class
    C:\dev\hello\main.c:113: error: syntax error before string constant
    C:\dev\hello\main.c:113: warning: type defaults to `int' in declaration of `scanf'
    C:\dev\hello\main.c:113: warning: function declaration isn't a prototype
    C:\dev\hello\main.c:113: warning: data definition has no type or storage class
    C:\dev\hello\main.c:114: warning: type defaults to `int' in declaration of `nbr_chiffre'
    C:\dev\hello\main.c:114: error: redefinition of 'nbr_chiffre'
    C:\dev\hello\main.c:72: error: previous definition of 'nbr_chiffre' was here
    C:\dev\hello\main.c:114: error: `choix_tmp' undeclared here (not in a function)
    C:\dev\hello\main.c:114: error: initializer element is not constant
    Process terminated with status 1 (0 minutes, 2 seconds)
    50 errors, 58 warnings
    Joli score !

    • Les commentaires // ne sont pas supportés en C90
    • Il manque une définition de fonction...
    • Il manque les headers pour les appels de fonctions standards
    • Lorsqu'une fonction n'a pas de paramètres, on met void.
    • Dans Saisie_Nom(), tu définis 'nom_a_renvoyer' et tu utilises 'nom'...
    • Il est inutile, voire dangereux, de mettre un cast au retour de malloc().
    • 'sizeof (char *nbr_caractere)' n'a aucin sens. C'est 'sizeof (char) *nbr_caractere'. Mais comme sizeof (char) vaut 1 par-définition (c'est l'unité de compte), on peut écrire : 'nbr_caractere' tout court...
    • Les codes d'allocation de chaines sont redondants, et il manque la copie de la chaine... Ce que tu veux en fait, c'est strdup()...
    • gets() est un bug qu'il ne faut pas utiliser dans les nouveaux développements.
    • Code : Sélectionner tout - Visualiser dans une fenêtre à part
      1
      2
      3
      4
      static void top3 (int pop[], int pop3[3], int n) /* top 3 des titres du sondage */
      {
      <...>
            pop[pop3] = 0;
      n'a aucun sens. pop3 est un tableau. Ca ne peut être un indice.
    • Un tas de fonctions ne sont pas utilisées
    • Des fonctions sont appelées avec de mauvais paramètres..

    Ce que tu veux faire n'est pas clair. Je serais toi, je commencerais par écrire des fonctions de saisies claires à base de fgets(). Cherche aussi fpurge() sur le forum. Appelée après fgets(), elle permet d'écrire des saisies propres et stables.
    Pas de Wi-Fi à la maison : CPL

  3. #3
    Candidat au Club
    Profil pro
    Inscrit en
    Octobre 2008
    Messages
    3
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Octobre 2008
    Messages : 3
    Points : 2
    Points
    2
    Par défaut
    merci pour ta réponse mais le problème etant que, en cours nous navons pas vu les notions de strdup() ,fpurge() et fgets(). Je ne fait de la programmation seulment depuis 1 mois.
    De plus que veut tu dire par "C90" de quoi s'agit t'il ?

  4. #4
    Expert éminent sénior
    Avatar de Emmanuel Delahaye
    Profil pro
    Retraité
    Inscrit en
    Décembre 2003
    Messages
    14 512
    Détails du profil
    Informations personnelles :
    Âge : 67
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Retraité

    Informations forums :
    Inscription : Décembre 2003
    Messages : 14 512
    Points : 20 985
    Points
    20 985
    Par défaut
    Citation Envoyé par TheFullMetal Voir le message
    merci pour ta réponse mais le problème etant que, en cours nous navons pas vu les notions de strdup() ,fpurge() et fgets(). Je ne fait de la programmation seulment depuis 1 mois.
    Alors ton enseignement est mal fait, parce que scanf() n'est pas du tout une fonction de débutants.
    De plus que veut tu dire par "C90" de quoi s'agit t'il ?
    C'est la version 1990 du C normalisée. C'est la plus répandue.

    Depuis, il y a eu une version 1999 (dite C99) mais qui est malheureusement mal déployées à cause des réticences de Microsoft et de certaines difficultés techniques.

    Il existe cependant des versions payantes de compilateurs C99

    - Intel
    - Comeau

    (avec bibliothèques C99)

    - Dinkumware

    sur le marché.
    Pas de Wi-Fi à la maison : CPL

Discussions similaires

  1. Aide pour programme sur C#
    Par Invité dans le forum C#
    Réponses: 18
    Dernier message: 06/11/2007, 09h31
  2. Besoin d'aide pour programmation en c
    Par romi36 dans le forum Débuter
    Réponses: 7
    Dernier message: 09/06/2007, 22h55
  3. aide pour programme
    Par mitherkiller dans le forum C
    Réponses: 5
    Dernier message: 24/02/2007, 21h38
  4. [TP] Aide pour programme de tarification
    Par Stonley dans le forum Turbo Pascal
    Réponses: 2
    Dernier message: 13/02/2007, 13h20
  5. [Dev-C++] Aide pour programmer avec Qt 4
    Par stone dans le forum EDI
    Réponses: 3
    Dernier message: 02/02/2006, 08h58

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo