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
| #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
void love();
void fin();
void wait(int seconds);
int main(int argc, char *argv[])
{
/* déclaration des variables */
int a ;
char b[99] ;
int buf ;
//unsigned int lpti ; // Sert à QUOI ?
printf("qu'est ce qu'il y a entre ciel et terre ?\n") ;
scanf( "%s" , b ) ;
//for(a=0 ; a<1 ; a=1+a){ //completement useless
if(strcmp (b,"et")==0) printf("bravo\n\n") ;
else printf("perdu\n\n") ;
printf("\nqui est un genie ??? \n " ) ; //surement pas toi ^^
fflush(stdin); //vide le buffer memoire
scanf("%s" , &b ) ;
if(strcmp (b,"flo")==0 ) printf("bien , je suis tout a fait d'accord ac toi !!!\n je vois que tu es tres intelligent \n\n") ;
else printf("non , non tu te trompes c 'est flo le genie \n\n") ;
printf("Que dit une blonde recevant une crotte d'oiseau sur la tete ? \n ") ;
fflush(stdin);
scanf("%s" , &b ) ;
if(strcmp(b,"Heureusement, les vaches ne volent pas" ) ==0 ) printf("c'est ca\n\n") ;
else printf("Heureusement, les vaches ne volent pas\n\n") ;
//appel des deux fonctions
love();
fin();
system("pause");
return(0);
}
/* clock example: countdown */
void wait ( int seconds ){
clock_t endwait;
endwait = clock () + seconds * CLK_TCK ;
while (clock() < endwait) {}
}
void fin(){
int n;
printf ("que va t'il se passer dans 30 secondes ??? \n");
for (n=30; n>0; n--)
{
printf ("%d\n",n);
wait (1);
}
printf ("et ben il se passe rien!!!\n");
}
void love () {
char b[99] ;
do{
printf("quel est le prenom de ma nana ?\n ") ;
fflush(stdin);
scanf("%s",&b ) ;
if(strcmp(b , "lea") == 0 ) printf("bien bien") ;
else printf("non c 'est pas encore ca \n") ;
}while(strcmp(b , "lea")) ;
} |
Partager