-
Lenguaje
C
-
Descripción
Calculadora que suma, resta, multiplica y divide
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
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
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main (void)
{
int operacion;
float a, b, resultado;
char tecla_repetir;
do {
system ("cls");
printf ("Ingresa el valor de a: ");
scanf ("%f", &a);
(void) getchar ();
printf ("Ingresa el valor de b: ");
scanf ("%f", &b);
(void) getchar ();
printf ("Selecciona el valor de operacion.\n");
printf ("\t1.- Suma\n");
printf ("\t2.- Resta\n");
printf ("\t3.- Multiplicaci\242n\n");
printf ("\t4.- Divisi\242n\n");
printf ("\t: ");
do {
scanf ("%d", &operacion);
(void) getchar ();
if (operacion<1||operacion>4)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (operacion<1||operacion>4);
resultado=0;
if(operacion==1)
resultado=a+b;
if(operacion==2)
resultado=a-b;
if(operacion==3)
resultado=a*b;
if(operacion==4&&b!=0)
resultado=a/b;
printf ("Valor de resultado: %g\n", resultado);
putchar ('\n');
printf ("\250Deseas repetir el proceso? (S/N): ");
do {
tecla_repetir = (char) getch();
} while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
putchar ('\n');
} while (tecla_repetir=='s' || tecla_repetir=='S');
return EXIT_SUCCESS;
}
#include <stdlib.h>
#include <conio.h>
int main (void)
{
int operacion;
float a, b, resultado;
char tecla_repetir;
do {
system ("cls");
printf ("Ingresa el valor de a: ");
scanf ("%f", &a);
(void) getchar ();
printf ("Ingresa el valor de b: ");
scanf ("%f", &b);
(void) getchar ();
printf ("Selecciona el valor de operacion.\n");
printf ("\t1.- Suma\n");
printf ("\t2.- Resta\n");
printf ("\t3.- Multiplicaci\242n\n");
printf ("\t4.- Divisi\242n\n");
printf ("\t: ");
do {
scanf ("%d", &operacion);
(void) getchar ();
if (operacion<1||operacion>4)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (operacion<1||operacion>4);
resultado=0;
if(operacion==1)
resultado=a+b;
if(operacion==2)
resultado=a-b;
if(operacion==3)
resultado=a*b;
if(operacion==4&&b!=0)
resultado=a/b;
printf ("Valor de resultado: %g\n", resultado);
putchar ('\n');
printf ("\250Deseas repetir el proceso? (S/N): ");
do {
tecla_repetir = (char) getch();
} while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
putchar ('\n');
} while (tecla_repetir=='s' || tecla_repetir=='S');
return EXIT_SUCCESS;
}