-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExercice-1,2.c
52 lines (47 loc) · 1.22 KB
/
Exercice-1,2.c
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
/******************************************************************************
TD Informatique
Aloïs GAUCHER
*******************************************************************************/
#include <stdio.h>
float a,b,c = 0;
int selection;
int main()
{
//Saisie des opérandes
printf("Saisissez le premier nombre: \n");
scanf("%f" ,&a);
printf("Saisissez le second nombre: \n");
scanf("%f" ,&b);
printf("Veuillez choisir l'opération à réaliser: \n");
printf("1 - Multiplication\n");
printf("2 - Addition\n");
printf("3 - Soustraction\n");
printf("4 - Division\n");
scanf("%d" ,&selection);
switch(selection)
{
case 1:
c = a * b;
//Résultat
printf("Le résultat de l'opération est %f", c);
break;
case 2:
c = a + b;
//Résultat
printf("Le résultat de l'opération est %f", c);
break;
case 3:
c = a - b;
//Résultat
printf("Le résultat de l'opération est %f", c);
break;
case 4:
c = a / b;
//Résultat
printf("Le résultat de l'opération est %f", c);
break;
default:
printf("Veuillez choisir une opération à réaliser (1 - 4) !\n");
}
return 0;
}