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 :

probleme d'execution avec DEV C++


Sujet :

C

  1. #21
    Débutant Avatar de miron
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    479
    Détails du profil
    Informations personnelles :
    Âge : 36
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 479
    Points : 291
    Points
    291
    Par défaut
    Citation Envoyé par lucky31
    l'execution la table du dos apparrait pendant 2sec a peine
    ou esce que tu affiche la table du dos?
    Prenez le temps d'aller vite...

    Programme sous Windows, en C avec Code::Blocks, en Java JRE 1.6. avec Eclipse, en PHP/HTML/CSS avec Dreamweaver CS5 ou NotePad++ et en VBA sous avec Access 2010, Excel 2010, Word 2010 et Outlook 2010.

  2. #22
    Membre régulier Avatar de lucky31
    Inscrit en
    Mai 2006
    Messages
    239
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 239
    Points : 73
    Points
    73
    Par défaut
    maintenant la table du dos m'affiche le menu mais tjrs le meme pb l'execution des tps ne s'affiche pas??
    "un ordinateur est une machine à convertir la pensée en actions". JF

  3. #23
    Membre régulier Avatar de lucky31
    Inscrit en
    Mai 2006
    Messages
    239
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 239
    Points : 73
    Points
    73
    Par défaut
    compiler puis executer puis la table du dos s'affiche
    "un ordinateur est une machine à convertir la pensée en actions". JF

  4. #24
    Débutant Avatar de miron
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    479
    Détails du profil
    Informations personnelles :
    Âge : 36
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 479
    Points : 291
    Points
    291
    Par défaut
    oula ton "nb" dans tp1 n'est pas initialisé!!!
    Prenez le temps d'aller vite...

    Programme sous Windows, en C avec Code::Blocks, en Java JRE 1.6. avec Eclipse, en PHP/HTML/CSS avec Dreamweaver CS5 ou NotePad++ et en VBA sous avec Access 2010, Excel 2010, Word 2010 et Outlook 2010.

  5. #25
    Débutant Avatar de miron
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    479
    Détails du profil
    Informations personnelles :
    Âge : 36
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 479
    Points : 291
    Points
    291
    Par défaut
    voici un code qui s'execute plus loin:
    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
     
    #include <stdio.h>
    #include<stdlib.h>
    #define N 30
    void tp1 ();
    void tp2 ();
    void tp3 ();
    void tp4 ();
    int choisir ();
    int Index (char s);
    char sommet [30];
    char l2[30];
    int l1[30];
    int M[30][30];
    int r,nb,nbr;
     
    char s;
     
    int main ()
    {
    int r, nb, nbr = 0;
    int choix;
    do {
    choix = choisir ();
     
    if (choix=='1') tp1 ();
    if (choix=='2') tp2 ();
    if (choix=='3') tp3 ();
    //if (choix==4) tp4 ();
    } while (choix!=5);
    return 0;
    }
     
    int choisir ()
    {
    int choix;
    printf ("tapez 1 pour effectuer le tp1 \n");
    printf ("tapez 2 pour effectuer le tp2 \n");
    printf ("tapez 3 pour effectuer le tp3 \n");
    printf ("tapez 4 pour effectuer le tp4 \n");
    printf ("tapez 5 pour sortir \n");
    printf (" Donner votre choix: ");
    choix=getch();
     
    return (choix);
    }
    //******************************************************************************
     
    int Index (char s)
    {
     
    int r=0;
    int p;
    p=1;
     
    while ((sommet[p]!=s) && (sommet[p]!='*'))
    {
    p=p+1;
    }
    if (sommet[p]==s)
    {
    return(p);
    }
    else
    {
    r=r+1;
    sommet[r]=s;
    return (r);
    }
    }
     
    //******************************************************************************
    void tp2 ()
    {//tp1();
    int i,j;
    char som1,som2;
    int nb=0;
    int nbr=0;
    char sommet[30];
    int M[30][30];
    printf ("donner le nombre de sommets : ");
    scanf ("%d\n",&nb);
    printf ("donner le nombre d'arcs : ");
    scanf ("%d\n",&nbr);
    //initialisation du tableau sommet
    for (i=1;i<=nb;i++)
    {
    sommet[i]= ' ' ;
    }
    //initialisation de la matrice M
    for (i=1;i<=nb;i++)
    for (j=1;j<=nb;j++)
    M[i][j]=0;
    //parcours en profondeur du graphe
    for (i=1;i<=nbr;i++)
    {
    int x,y;
    printf ("donner l'extremite initiale de l'arc \n: ");
    scanf ("%c",&som1);
    printf ("donner l'extremite terminale de l'arc \n: ");
    scanf ("%c",&som2);
    //x donne l'indice de som1 dans le tableau sommet
    x=Index(som1);
    // meme chose pour y
    y=Index(som2);
    M[x][y]=1;
    }
    //affichage de la matrice
    for (i=1;i<=nb;i++)
    {
    for (j=1;j<=nb;j++)
    printf ("%7d",M[i][j]);
    printf ("\n");
    }
    tp1 ();
    }
    //******************************************************************************
    void tp1 ()
    {
    int i,j,k,d,nb,M[30][30],l1[30];
    char sommet[30],l2[30];
    k=0;
    //la lecture de la matrice sommet-sommet
    for(i=1;i<=nb;i++)
    {
    for(j=1;j<=nb;j++)
    {
    scanf( "%d",M[i][j]);
    }
    }
    //la lecture du tableau des sommets
    for (i=1;i<=nb;i++)
    {
    scanf ("%c" , sommet[i]);
    }
    //initialisation de la liste l2
    for (i=1;i<=N ; i++)
    {
    l2[i]=' ';
    }
    //creation de la liste l2
    for (i=1;i<=nb;i++)
    {
    for (j=1;j<=nb;j++)
    {
    if( M[i][j]==1)
    {
    printf (" le successeur du sommet : ");
    printf ("%c",sommet[i]);
    printf (" est : ");
    printf ("%c\n",sommet[j]);
    k=k+1;
    l2[k]=sommet[j];
    }
    }
    }
    d=i;
    for (j=1;j<=nb;i++)
    {
    if (M[d][j]!=1)
    {
    k=k+1;
    l2[k]='*';
    }
    }
     
    //affichage de la liste l2
    for(i=1;i<=N;i++)
    {
    while (l2[i]!=' ' )
    {
    printf("%c",l2[i]);
    printf (" ");
    }
    }
    //initialisation de la liste l1
    for(i=1;i<N;i++)
    {
    l1[i]=0;
    }
    //creation de la liste l1
    i=1;
    j=1;
    k=0;
    a:if(M[i][j]==1)
    {
    k=k+1;
    l1[k]=k;
    j=j+1;
    while(j<=nb)
    {
    b:if(M[i][j]==1)
    {
    k=k+1;
    j=j+1;
    goto b;
    }
    else
    {
    j=j+1;
    goto b;
    }
    }
    i=i+1;
    j=1;
    goto a;
    }
    else
    {
    j=j+1;
    goto a;
    }
    int p;
    p=k;
    for (i=1;i<=N;i++)
    {
    if(l2[i]=='*')
    {
    l1[p]=p;
    }
    }
    //affichage de la liste l1
    for(i=1;i<=N;i++)
    {
    while (l1[i]!=0)
    {
    printf("%d",l1[i]);
    printf (" ");
    }
    }
     
    }
    //******************************************************************************
    void tp3 ()
    {
    int i,j,nb,M[30][30];
    for (i=1;i<=nb;i++)
    {
    for (j=1;j<=nb;j++)
    {
    if ((M[i][j]==1)&&(i!=j))
    {
    if ((M[j][i]==1)&&(i!=j))
    {
    printf (" le graphe est symétrique ");
    printf ("\n");
    }
    else printf (" le graphe est antisymetrique ");
    }
    if ((M[i][j]==0) && (M[j][i]==0))
    {
    printf (" le graphe n'est complet ");
    printf ("\n");
    }
    else printf("le graphe est complet");
    }
    }
     
    }
     
    //return ;
     
    //}
    Prenez le temps d'aller vite...

    Programme sous Windows, en C avec Code::Blocks, en Java JRE 1.6. avec Eclipse, en PHP/HTML/CSS avec Dreamweaver CS5 ou NotePad++ et en VBA sous avec Access 2010, Excel 2010, Word 2010 et Outlook 2010.

  6. #26
    Membre régulier Avatar de lucky31
    Inscrit en
    Mai 2006
    Messages
    239
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 239
    Points : 73
    Points
    73
    Par défaut merci
    ais vous pouvez m'aider a plus l'ameliorer
    "un ordinateur est une machine à convertir la pensée en actions". JF

  7. #27
    Débutant Avatar de miron
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    479
    Détails du profil
    Informations personnelles :
    Âge : 36
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 479
    Points : 291
    Points
    291
    Par défaut
    Citation Envoyé par lucky31
    ais vous pouvez m'aider a plus l'ameliorer
    Je comprend pas trop ce que votre programme doit faire donc il va me faloir apredre et compredre pour pouvoir vous aider...
    Cela ne fait que 1 an que je programme en C.
    Je n'aurais pas forcement les competences necesaires!!!
    Voila si vous aviez des explication simples et clairs...
    Prenez le temps d'aller vite...

    Programme sous Windows, en C avec Code::Blocks, en Java JRE 1.6. avec Eclipse, en PHP/HTML/CSS avec Dreamweaver CS5 ou NotePad++ et en VBA sous avec Access 2010, Excel 2010, Word 2010 et Outlook 2010.

  8. #28
    Membre régulier Avatar de lucky31
    Inscrit en
    Mai 2006
    Messages
    239
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 239
    Points : 73
    Points
    73
    Par défaut
    ben mon prg est base sur les graphes, dans le 1 tp je dois afficher 2 listes 1 contient les successeurs et l'autre l'@ des successeurs
    tp2 poser le graphe ds 1 matrice
    pui tp3 si pour tester si le graphe est complet....
    et j'ai pas encore fini tp4 car je dois implementer dijkstra et ford en utilisant la matrice qui contient le poid de chaque arcs merci
    "un ordinateur est une machine à convertir la pensée en actions". JF

  9. #29
    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 crocodilex
    Lis ça :
    http://emmanuel-delahaye.developpez....tes.htm#saisie

    PS : J'espère que Emdel ne sera pas faché si je mets un lien vers son site
    Ben non, c'est fait pour...
    Pas de Wi-Fi à la maison : CPL

  10. #30
    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 miron
    On me la toujours dit mais jamais expliqué...
    Si qqn peut le faire...
    http://emmanuel-delahaye.developpez....s.htm#globales
    Pas de Wi-Fi à la maison : CPL

  11. #31
    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 lucky31
    vous pouvez encore voir mes fautes
    Manque les paramètres de fgets()...
    Pas de Wi-Fi à la maison : CPL

  12. #32
    Membre régulier Avatar de lucky31
    Inscrit en
    Mai 2006
    Messages
    239
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 239
    Points : 73
    Points
    73
    Par défaut
    le dernier code poster par miron vous pouvez essaye de le corriger encore svp
    "un ordinateur est une machine à convertir la pensée en actions". JF

  13. #33
    Membre régulier Avatar de lucky31
    Inscrit en
    Mai 2006
    Messages
    239
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 239
    Points : 73
    Points
    73
    Par défaut
    le prg est ecris en c est compiler avec le dev c++
    "un ordinateur est une machine à convertir la pensée en actions". JF

  14. #34
    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 lucky31
    le dernier code poster par miron vous pouvez essaye de le corriger encore svp
    Déjà, y'a ça :
    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
     
    Compiling: main.c
    main.c:4: warning: function declaration isn't a prototype
    main.c:5: warning: function declaration isn't a prototype
    main.c:6: warning: function declaration isn't a prototype
    main.c:7: warning: function declaration isn't a prototype
    main.c:8: warning: function declaration isn't a prototype
    main.c: In function `main_':
    main.c:20: warning: declaration of 'r' shadows a global declaration
    main.c:14: warning: shadowed declaration is here
    main.c:20: warning: declaration of 'nb' shadows a global declaration
    main.c:14: warning: shadowed declaration is here
    main.c:20: warning: declaration of 'nbr' shadows a global declaration
    main.c:14: warning: shadowed declaration is here
    main.c:20: warning: unused variable `r'
    main.c:20: warning: unused variable `nb'
    main.c:20: warning: unused variable `nbr'
    main.c: At top level:
    main.c:34: warning: function declaration isn't a prototype
    main.c: In function `choisir':
    main.c:42: error: implicit declaration of function `getch'
    main.c:42: warning: nested extern declaration of `getch'
    main.c: At top level:
    main.c:48: warning: declaration of 's' shadows a global declaration
    main.c:16: warning: shadowed declaration is here
    main.c: In function `Index':
    main.c:51: warning: declaration of 'r' shadows a global declaration
    main.c:14: warning: shadowed declaration is here
    main.c: At top level:
    main.c:73: warning: function declaration isn't a prototype
    main.c: In function `tp2':
    main.c:76: warning: declaration of 'nb' shadows a global declaration
    main.c:14: warning: shadowed declaration is here
    main.c:77: warning: declaration of 'nbr' shadows a global declaration
    main.c:14: warning: shadowed declaration is here
    main.c:78: warning: declaration of 'sommet' shadows a global declaration
    main.c:10: warning: shadowed declaration is here
    main.c:79: warning: declaration of 'M' shadows a global declaration
    main.c:13: warning: shadowed declaration is here
    main.c:102: warning: passing arg 1 of `Index' with different width due to prototype
    main.c:104: warning: passing arg 1 of `Index' with different width due to prototype
    main.c: At top level:
    main.c:118: warning: function declaration isn't a prototype
    main.c: In function `tp1':
    main.c:119: warning: declaration of 'nb' shadows a global declaration
    main.c:14: warning: shadowed declaration is here
    main.c:119: warning: declaration of 'M' shadows a global declaration
    main.c:13: warning: shadowed declaration is here
    main.c:119: warning: declaration of 'l1' shadows a global declaration
    main.c:12: warning: shadowed declaration is here
    main.c:120: warning: declaration of 'sommet' shadows a global declaration
    main.c:10: warning: shadowed declaration is here
    main.c:120: warning: declaration of 'l2' shadows a global declaration
    main.c:11: warning: shadowed declaration is here
    main.c:127: warning: format argument is not a pointer (arg 2)
    main.c:133: warning: format argument is not a pointer (arg 2)
    main.c: At top level:
    main.c:234: warning: function declaration isn't a prototype
    main.c: In function `tp3':
    main.c:235: warning: declaration of 'nb' shadows a global declaration
    main.c:14: warning: shadowed declaration is here
    main.c:235: warning: declaration of 'M' shadows a global declaration
    main.c:13: warning: shadowed declaration is here
    main.c:262:4: warning: no newline at end of file
    Process terminated with status 1 (0 minutes, 1 seconds)
    1 errors, 50 warnings
    Pas de Wi-Fi à la maison : CPL

  15. #35
    Membre régulier Avatar de lucky31
    Inscrit en
    Mai 2006
    Messages
    239
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 239
    Points : 73
    Points
    73
    Par défaut
    mais moi il m'affiche paas ces erreurs il va jusqu'a l'execution tu compile avec le dev c++?
    "un ordinateur est une machine à convertir la pensée en actions". JF

  16. #36
    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 lucky31
    mais moi il m'affiche paas ces erreurs il va jusqu'a l'execution tu compile avec le dev c++?
    Code:Blocks, mais c'est le même compilateur (gcc/MinGW)

    Modifie tes paramètres du compilateur. Ajoute les options
    Pas de Wi-Fi à la maison : CPL

  17. #37
    Membre régulier Avatar de lucky31
    Inscrit en
    Mai 2006
    Messages
    239
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 239
    Points : 73
    Points
    73
    Par défaut
    mais sa sert a quoi de les ajouter?
    "un ordinateur est une machine à convertir la pensée en actions". JF

  18. #38
    Membre expérimenté
    Avatar de Gruik
    Profil pro
    Développeur Web
    Inscrit en
    Juillet 2003
    Messages
    1 566
    Détails du profil
    Informations personnelles :
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Juillet 2003
    Messages : 1 566
    Points : 1 727
    Points
    1 727
    Par défaut
    A te forcer à être discipliné ,)

  19. #39
    Membre régulier Avatar de lucky31
    Inscrit en
    Mai 2006
    Messages
    239
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 239
    Points : 73
    Points
    73
    Par défaut
    et comment les ajouter?
    peut tu essaye de les corriger
    "un ordinateur est une machine à convertir la pensée en actions". JF

  20. #40
    Rédacteur

    Avatar de gege2061
    Femme Profil pro
    Administrateur de base de données
    Inscrit en
    Juin 2004
    Messages
    5 840
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Administrateur de base de données

    Informations forums :
    Inscription : Juin 2004
    Messages : 5 840
    Points : 11 625
    Points
    11 625
    Par défaut
    Citation Envoyé par lucky31
    mais sa sert a quoi de les ajouter?
    man gcc

Discussions similaires

  1. [VB6]Probleme d'execution avec la commande Shell
    Par belfaigore dans le forum VB 6 et antérieur
    Réponses: 2
    Dernier message: 01/06/2006, 09h28
  2. [DEB]Probleme de compil avec Dev-Cpp
    Par Marc_3 dans le forum Dev-C++
    Réponses: 3
    Dernier message: 31/01/2006, 22h27
  3. Problème d'exécution avec wxWidgets
    Par GLDavid dans le forum wxWidgets
    Réponses: 3
    Dernier message: 10/11/2005, 10h44
  4. probleme de librairie avec Dev-C++
    Par Miksimus dans le forum Dev-C++
    Réponses: 2
    Dernier message: 12/10/2005, 12h21
  5. [System][EXEC] Probleme d'execution avec une commande parametrée.
    Par chicorico dans le forum Général Java
    Réponses: 15
    Dernier message: 20/05/2005, 15h07

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