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 :

Contrôler la saisie d'une date


Sujet :

C

  1. #1
    Nouveau Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2015
    Messages
    4
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2015
    Messages : 4
    Points : 0
    Points
    0
    Par défaut Contrôler la saisie d'une date
    Bonjour,

    J'aimerais de l'aide pour contrôler la saisie d'une date.
    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
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    #include<stdio.h>
    #include<stdlib.h>
    #include<windows.h>
    #include<time.h>
    #include<conio.h>
    typedef struct
    {
    	int jj;
    	int mois;
    	int annee;
    }date;
    typedef struct
    {
    	char code[15];
    	char designation[50];
    	char categorie[40];
    	float prix;
    	int qte;
    	/*int jj;
    	int mois;
    	int annee;*/
    	 date dateDebut;
    	 date dateExp ;
    }produit;/*Produit à créer*/
    void Date(date *d)
    {
        time_t nsec;
        struct tm *temps;
        nsec = time(NULL);
        temps = localtime(&nsec);
        d->jj = temps->tm_mday;
        d->mois = temps->tm_mon + 1;
        d->annee = temps->tm_year + 1900;
    }
    void creer_fichier(FILE *f,char *n)
    {
    	char choix;
    	produit tmp;
    	system("cls");system("color ac");
    	printf("CREATION DU FICHIER \n\n");
    	printf("NOM DU FICHIER A CREER: ");
    	gets(n);
    	fflush(stdin);
    	f=fopen(n,"w");
    	do
    	{
    		printf("\n\t\t\tSAISIE D'UN PRODUIT?(o/n) ");
    		choix=(char)getchar();
    		printf("\n\n\n");
    		fflush(stdin);
    		if(choix == 'o' || choix == 'O')
    		{
    			printf("\tCODE DU PRODUIT: ");gets(tmp.code);printf("\n\n\n");
    			printf("\tDESIGNATION DU PRODUIT: ");gets(tmp.designation);printf("\n\n\n");
    			printf("\tCATEGORIE DU PRODUIT: ");gets(tmp.categorie);printf("\n\n\n");
    			printf("\tPRIX UNITAIRE DU PRODUIT: ");scanf("%f",&tmp.prix);printf("\n\n\n");
    			printf("\tQUANTITE DE STOCK DU PRODUIT: ");scanf("%d",&tmp.qte);printf("\n\n\n");
    			printf("\tDATE DE DEBUT DU PRODUIT\n");printf("\n\n\n");
    			while(tmp.dateDebut.jj<1 || tmp.dateDebut.jj>31)
                    {
                        printf("\t\tJour :  \n");
                        scanf("%d",&tmp.dateDebut.jj);
                    }
    			/*printf("\t\tJour :  ");scanf("%d",&tmp.dateDebut.jj);*/
    			printf("\t\tMois :  ");scanf("%d",&tmp.dateDebut.mois);
    			printf("\t\tAnnee:  ");scanf("%d",&tmp.dateDebut.annee);printf("\n\n\n");
    			printf("\tDATE D\'EXPIRATION DU PRODUIT\n");printf("\n\n\n");
    			printf("\t\tJour :  ");scanf("%d",&tmp.dateExp.jj);
    			printf("\t\tMois :  ");scanf("%d",&tmp.dateExp.mois);
    			printf("\t\tAnnee :  ");scanf("%d",&tmp.dateExp.annee);
    			printf("\n\n\n");
    			fflush(stdin);
    			fwrite(&tmp,sizeof(produit),1,f);
    		}
     
    	}while(choix=='o' || choix=='O');
    	fclose(f);
    }//fin du creation;
     
     
    void lire_fichier(FILE *f,char *n)
    {
    	produit tmp;
    	int compteur= 1;
    	system("cls");system("color 0f");
    	printf("LECTURE DU FICHIER\n\n");
    	printf("NOM DU FICHIER A LIRE: ");
    	gets(n);
    	fflush(stdin);
    	f=fopen(n,"r");
    	if(f == NULL)
    		printf("\nERREUR,CE FICHIER N'EXISTE PAS\n\n");
    	else
    	{
    		printf("-----------------------------------------------------------------------------\n");
    		printf("\n\t\t\tLISTING DU FICHIER\n\n");
    		printf("-----------------------------------------------------------------------------\n");
    		while(fread(&tmp,sizeof(produit),1,f) != 0)
    		{
    			printf("\t\t Fiche nø%d : \n",compteur);
    			compteur++;
    			printf("\t%s %s %s %f %d Date DT: %d/%d/%d Date EXP: %d/%d/%d\n",
                  tmp.code,tmp.designation,tmp.categorie,tmp.prix,tmp.qte,tmp.dateDebut.jj,
                  tmp.dateDebut.mois,tmp.dateDebut.annee,tmp.dateExp.jj,tmp.dateExp.mois,tmp.dateExp.annee );
    			printf("-----------------------------------------------------------------------------\n");
    		}
    		fclose(f);
    	}
    	printf("POUR C0NTINUER FRAPPER UNE TOUCHE ");
    	getch();
    }
    //fin de lecture;
    void ajout(FILE *f,char *n)
    {
    	produit tmp;
    	char choix;
    	system("cls");
    	printf("AJOUT D'UN PRODUIT \n\n");
    	printf("NOM DU FICHIER A MODIFIER: ");
    	gets(n);
    	fflush(stdin);
    	f=fopen(n,"a");
    	do
    	{
    		printf("\n\t\t\tSAISIE D'UN PRODUIT?(o/n) ");
    		choix=(char)getchar();
    		printf("\n\n\n");
    		fflush(stdin);
    		if(choix == 'o' || choix == 'O')
    		{
    			printf("\tCODE DU PRODUIT: ");gets(tmp.code);printf("\n\n\n");
    			printf("\tDESIGNATION DU PRODUIT: ");gets(tmp.designation);printf("\n\n\n");
    			printf("\tCATEGORIE DU PRODUIT: ");gets(tmp.categorie);printf("\n\n\n");
    			printf("\tPRIX UNITAIRE DU PRODUIT: ");scanf("%f",&tmp.prix);printf("\n\n\n");
    			printf("\tQUANTITE DE STOCK DU PRODUIT: ");scanf("%d",&tmp.qte);printf("\n\n\n");
    			printf("\tDATE DE DEBUT DU PRODUIT\n");printf("\n\n\n");
     
    			while(tmp.dateDebut.jj<1 || tmp.dateDebut.jj>31)
                    {
                        printf("\t\tJour :  \n");
                        scanf("%d",&tmp.dateDebut.jj);
                    }
    			printf("\t\tMois :  \n");scanf("%d",&tmp.dateDebut.mois);
    			printf("\t\tAnnee:  \n");scanf("%d",&tmp.dateDebut.annee);printf("\n\n\n");
    			printf("\tDATE D\'EXPIRATION DU PRODUIT\n");printf("\n\n\n");
    			printf("\t\tJour :  \n");scanf("%d",&tmp.dateExp.jj);
    			printf("\t\tMois :  \n");scanf("%d",&tmp.dateExp.mois);
    			printf("\t\tAnnee :  \n");scanf("%d",&tmp.dateExp.annee);
    			printf("\n\n\n");
    			fflush(stdin);
    			fwrite(&tmp,sizeof(produit),1,f);
    		}
     
    	}while(choix=='o' || choix=='O');
    	fclose(f);
    }// fin d'ajout;
    void rechercheParCode(FILE *f,char *n)
    {
        produit tmp;
        int compteur=0;
        char trouve =0,code[15];
        system("cls");
        printf("RECHERCHE PRODUIT PAR CODE\n\n\n");
        printf("NOM DU FICHIER: \n\n");gets(n);
        fflush(stdin);
        f=fopen(n,"r");
        printf("\n\n\t\nFICHE A RETROUVER PAR CODE: ");gets(code);
        printf("\n\n");
        fflush(stdin);
        while(fread(&tmp,sizeof(produit),1,f)!=0)
        {
            if(strcmp(tmp.code,code)==0){
                trouve = 1;
                printf("-----------------------------------------------------------------------------\n");
                printf("\t\t\tPRODUIT RETROUVER : Fiche nø%2d\n",compteur);
                printf("-----------------------------------------------------------------------------\n");
                printf("\t\t\t CODE DU PRODUIT: %s\n\n\n",tmp.code);
                printf("\t\t\t DESIGNATION DU PRODUIT: %s\n\n\n",tmp.designation);
                printf("\t\t\t CATEGORIE DU PRODUIT: %s\n\n\n",tmp.categorie);
                printf("\t\t\t PRIX UNITAIRE DU PRODUIT: %5.2f\n\n\n",tmp.prix);
                printf("\t\t\t QUANTITE DU PRODUIT: %d\n\n\n",tmp.qte);
                printf("\t\t\t DATE DE DEBUT DU PRODUIT: %d/%d/%d\n\n\n",tmp.dateDebut.jj,tmp.dateDebut.mois,tmp.dateDebut.annee);
                printf("\t\t\t DATE D\'EXPIRATION DU PRODUIT: %d/%d/%d\n\n\n",tmp.dateExp.jj,tmp.dateExp.mois,tmp.dateExp.annee);
                printf("\n\n\n");
                compteur++;
            }
        }
        if(trouve==0)printf("\t\tCE PRODUIT N\'EXISTE PAS SUR LE FICHIER\n\n");
        fclose(f);
        printf("POUR CONTINUER FRAPPER UNE TOUCHE");
        getch();
     
    }//fin du recherche par code;
    void rechercheParCategorie(FILE *f,char *n)
    {
        produit tmp;
        int compteur=0;
        char trouve =0,categorie[15];
        system("cls");
        printf("RECHERCHE PRODUIT PAR CATEGORIE\n\n\n");
        printf("NOM DU FICHIER: \n\n");gets(n);
        fflush(stdin);
        f=fopen(n,"r");
        printf("\n\n\t\nFICHE A RETROUVER PAR CATEGORIE: ");gets(categorie);
        printf("\n\n");
        fflush(stdin);
        while(fread(&tmp,sizeof(produit),1,f)!=0)
        {
            if(strcmp(tmp.categorie,categorie)==0){
                trouve = 1;
                printf("-----------------------------------------------------------------------------\n");
                printf("\t\t\tPRODUIT RETROUVER : Fiche nø%2d\n",compteur);
                printf("-----------------------------------------------------------------------------\n");
                printf("\t\t\t CODE DU PRODUIT: %s\n\n\n",tmp.code);
                printf("\t\t\t DESIGNATION DU PRODUIT: %s\n\n\n",tmp.designation);
                printf("\t\t\t CATEGORIE DU PRODUIT: %s\n\n\n",tmp.categorie);
                printf("\t\t\t PRIX UNITAIRE DU PRODUIT: %5.2f\n\n\n",tmp.prix);
                printf("\t\t\t QUANTITE DU PRODUIT: %d\n\n\n",tmp.qte);
                printf("\t\t\t DATE DE DEBUT DU PRODUIT: %d/%d/%d\n\n\n",tmp.dateDebut.jj,tmp.dateDebut.mois,tmp.dateDebut.annee);
                printf("\t\t\t DATE D\'EXPIRATION DU PRODUIT: %d/%d/%d\n\n\n",tmp.dateExp.jj,tmp.dateExp.mois,tmp.dateExp.annee);
                printf("\n\n\n");
                compteur++;
            }
        }
        if(trouve==0)printf("\t\tCE PRODUIT N\'EXISTE PAS DANS LE FICHIER\n\n");
        fclose(f);
        printf("POUR CONTINUER FRAPPER UNE TOUCHE");
        getch();
     
    }//fin du recherche par categorie;
    void montant(FILE *f,char *n)
    {
    	produit tmp;
    	float montant=0;
    	char trouve =0;
    	system("cls");system("color 1a");
    	printf("MONTANT DU PRODUIT\n\n");
    	printf("NOM DU FICHIER A LIRE : ");gets(n);
    	fflush(stdin);
    	f=fopen(n,"r");
    	if(f == NULL)
    		printf("\nCE FICHIER N\'EXISTE PAS\n\n");
    	else
    	{
    		while(fread(&tmp,sizeof(produit),1,f)!=0)
    		{
                    trouve=1;
                    montant= montant+ tmp.prix * tmp.qte;
    		}
    		printf("le montant est :%f\n",montant);
    		if(trouve == 0)
                printf("%f",montant);
    		fclose(f);
    	}
    	printf("POUR CONTINUER TAPPER UNE TOUCHE");
    	getch();
     
     
    }
    void menu()
    {
    	FILE *fichier;
    	char nom[10];
    	char choix;
    	do
    	{
    		system("cls");system("color 1F");
    		printf("\t\t+++++++NDIAYE BARI BAGAGE+++++++++\n\n\n");
    		printf("\t\t1---------->CREATION DU FICHIER-----------\n\n\n");
    		printf("\t\t2---------->LECTURE DU FICHIER -----------\n\n\n");
    		printf("\t\t3---------->AJOUT D\'UN PRODUIT-----------\n\n\n");
    		printf("\t\t4---------->RECHERCHE PAR CODE -----------\n\n\n");
    		printf("\t\t5---------->RECHERCHE PAR CATEGORIE-----------\n\n\n");
    		printf("\t\t6---------->MONTANT PAR QUANTITE DU PRODUIT-----------\n\n\n");
    		printf("\t\tS---------->     SORTIE       -----------\n\n\n");
    		printf("\t\t\t Votre choix : ");
    		choix=(char)getch();
    		fflush(stdin);
    		switch(choix)
    		{
    			case '1':creer_fichier(fichier,nom);break;
    			case '2':lire_fichier(fichier,nom);break;
    			case '3':ajout(fichier,nom);break;
    			case '4':rechercheParCode(fichier,nom);break;
    			case '5':rechercheParCategorie(fichier,nom);break;
    			case '6':montant(fichier,nom);break;
    			case 's':printf("Merci de votre visite et au revoir!!!!\n");break;
    			default :{printf("ERREUR\n"); getch();}
    		}
    	}while((choix != 's') && (choix!='S'));
    	getch();
     
     
    }
    int main(int argc, char const *argv[])
    {
    	menu();
    	return 0;
    }
    Merci.

  2. #2
    Membre éclairé
    Avatar de Elijha
    Homme Profil pro
    Ingénieur développement matériel électronique
    Inscrit en
    Avril 2003
    Messages
    314
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Ingénieur développement matériel électronique
    Secteur : Bâtiment Travaux Publics

    Informations forums :
    Inscription : Avril 2003
    Messages : 314
    Points : 742
    Points
    742
    Par défaut
    Bonjour,

    Bienvenue sur le forum S9ULEY.

    1. Tu devrais expliquer clairement ton problème.

    2. Pas besoin de copier/coller tout ton code, mais seulement la partie qui pose problème.


    Pour ce qui est de la saisie de la date au clavier c'est expliquer dans cette discussion. Idem pour le contrôle de la date.
    Qu'est ce que tu n'arrives pas à faire ?


    Bonne continuation
    - Une réponse vous a été utile ? Remerciez son auteur en cliquant le pouce vert !
    - Travailler dur n'a jamais tué personne, mais pourquoi prendre le risque (Edgar Bergen)

  3. #3
    Modérateur
    Avatar de gangsoleil
    Homme Profil pro
    Manager / Cyber Sécurité
    Inscrit en
    Mai 2004
    Messages
    10 150
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Manager / Cyber Sécurité

    Informations forums :
    Inscription : Mai 2004
    Messages : 10 150
    Points : 28 119
    Points
    28 119
    Par défaut
    Comme le dit Elijha : quel est ton problème ??
    "La route est longue, mais le chemin est libre" -- https://framasoft.org/
    Les règles du forum

  4. #4
    Nouveau Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2015
    Messages
    4
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2015
    Messages : 4
    Points : 0
    Points
    0
    Par défaut merci
    Je vous remercie pour vos reactions. C'est que je suis un debutant sur le site. C'est pour cela j'ai pas maitrisé pour l'instant. Je veux comparer la date d'expiration a la date du systeme pour voir les produits qui sont expiré.

  5. #5
    Modérateur
    Avatar de gangsoleil
    Homme Profil pro
    Manager / Cyber Sécurité
    Inscrit en
    Mai 2004
    Messages
    10 150
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Manager / Cyber Sécurité

    Informations forums :
    Inscription : Mai 2004
    Messages : 10 150
    Points : 28 119
    Points
    28 119
    Par défaut
    Nous savons donc maintenant ce que tu souhaites faire, c'est un bon début.

    Mais quel est ton soucis ? Ton code ne compile pas, il plante, il ne fait pas ce que tu penses, autre ?
    "La route est longue, mais le chemin est libre" -- https://framasoft.org/
    Les règles du forum

  6. #6
    Membre éclairé
    Avatar de Elijha
    Homme Profil pro
    Ingénieur développement matériel électronique
    Inscrit en
    Avril 2003
    Messages
    314
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Ingénieur développement matériel électronique
    Secteur : Bâtiment Travaux Publics

    Informations forums :
    Inscription : Avril 2003
    Messages : 314
    Points : 742
    Points
    742
    Par défaut
    Bonjour,

    C'est très simple à faire. Il te suffit de tester si l'année de la date d'expiration est supérieure à celle du système. Si et seulement si la condition est vrai alors tu peux faire la même chose avec le mois et ensuite le jour.
    Attention, avant de tester le mois et le jour, il faut vérifier respectivement si c'est la même année et le même mois. Pas la peine de tester le numéro du mois s'il y a 5 ans d'écart (idem pour la journée).

    Par exemple
    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
        date dateSystem ;
        Date(&dateSystem) ;
     
        date dateExpiration = { .jj = 1, .mois = 2, .annee = 2016 } ;
     
        // Test de l'année.
        if(dateSystem.annee>dateExpiration.annee) {
            printf("Produit périmé depuis %d an(s)\n", dateSystem.annee-dateExpiration.annee) ;
        }
        // Si année OK, alors si c'est la même année on test le numéro du mois.
        else if((dateSystem.annee-dateExpiration.annee)==0 && dateSystem.mois>dateExpiration.mois) {
            printf("Produit périmé depuis %d mois\n", dateSystem.mois-dateExpiration.mois) ;
        }
        // Si mois OK, alors si c'est la même année et le même mois, on test le numéro du jour.
        else if((dateSystem.annee-dateExpiration.annee)==0 && (dateSystem.mois-dateExpiration.mois)==0 && dateSystem.jj>dateExpiration.jj) {
            printf("Produit périmé depuis %d jour(s)\n", dateSystem.jj-dateExpiration.jj) ;
        }
        // Sinon, cela veut dire que la date d'expiration n'est pas passée.
        else {
            printf("Produit non périmé. Date d'expiration au %.2d/%.2d/%.4d\n", dateExpiration.jj, dateExpiration.mois, dateExpiration.annee) ;
        }
    Et pour éviter de retaper le code de test, je t'invite à le faire à partir d'une fonction qui te retourne 0 ou -1 en cas de succès ou pas.

    Par exemple
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    // Test la date d avec la date système. Retourne 0 si la date > à la date système et -1 sinon.
    in dateCompareSystem(date *d) {
        ...
    }
    
    // Dans ton code
    if(dateCompareSystem(&dateExpiration)==-1) {
        printf("Produit perimé !\n") ;
        ... traitement de l'erreur.
    }
    Bonne continuation.
    - Une réponse vous a été utile ? Remerciez son auteur en cliquant le pouce vert !
    - Travailler dur n'a jamais tué personne, mais pourquoi prendre le risque (Edgar Bergen)

  7. #7
    Nouveau Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2015
    Messages
    4
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2015
    Messages : 4
    Points : 0
    Points
    0
    Par défaut
    Merci beaucoup el. c'est vrément gentil de ta part

Discussions similaires

  1. [wd9] Saisie d'une date ?
    Par MarcLa dans le forum WinDev
    Réponses: 4
    Dernier message: 10/01/2007, 16h43
  2. [Dates] saisie d'une date dans un formulaire
    Par heteroclite dans le forum Langage
    Réponses: 2
    Dernier message: 17/07/2006, 09h11
  3. [JSP]Saisie d'une date
    Par parasol007 dans le forum Servlets/JSP
    Réponses: 1
    Dernier message: 06/06/2006, 17h26
  4. [VBA-E] Saisie d'une date dans une Input Box
    Par nicobox dans le forum Macros et VBA Excel
    Réponses: 15
    Dernier message: 31/05/2006, 20h51

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