diff --git a/TD3/ex5 b/TD3/ex5 index bafe547..5525f95 100644 Binary files a/TD3/ex5 and b/TD3/ex5 differ diff --git a/TD3/ex5.c b/TD3/ex5.c index 5ed24b1..ea2b6d8 100644 --- a/TD3/ex5.c +++ b/TD3/ex5.c @@ -13,7 +13,7 @@ int main(int argc, char const *argv[]) printf("Saisissez votre nom suivi de votre prénom : "); res = scanf("%49s%49s", nom, prenom); if (res == 2) - printf("Vous vous appelez %s %s, est-ce correct ?\n", prenom, nom); + printf("Très bien %s %s\n", prenom, nom); else printf("Vous avez fait une erreur lors de la saisie.\n"); } \ No newline at end of file diff --git a/TD3/ex5_bis.c b/TD3/ex5_bis.c new file mode 100644 index 0000000..eb1bbde --- /dev/null +++ b/TD3/ex5_bis.c @@ -0,0 +1,11 @@ +#include +#include +#include +#include +#include +#include + +int main(int argc, char const *argv[]) +{ + printf("Très bien\n"); +} \ No newline at end of file diff --git a/TD3/ex5bis b/TD3/ex5bis new file mode 100644 index 0000000..bc88a79 Binary files /dev/null and b/TD3/ex5bis differ