daadou | Bonjour, En fait le programme fonctionne mais au moment ou je dois taper l'opération, il indique "tapez enter pour continuer" et il se ferme après.
Code :
- # include <stdio.h>
- # include <stdlib.h>
- int main(void)
- {
- int n1;
- int n2;
- char option;
- printf("premier nombre : " );
- scanf("%d",&n1);
- printf("deuxieme nombre : " );
- scanf("%d",&n2);
- printf("operation : " );
- scanf("%c",&option);
- switch (option)
- {
- case '+' : printf("%d + %d = %d",n1,n2,n1+n2);
- break;
- case '-' : printf("%d - %d = %d",n1,n2,n1-n2);
- break;
- case '*' : printf("%d * %d = %d",n1,n2,n1*n2);
- break;
- case '/' : printf("%d / %d = %d",n1,n2,n1/n2);
- break;
- }
- system("PAUSE" );
- return 0;
- }
|
|