Last active
August 29, 2015 14:21
-
-
Save kurai021/cb6efbad72c0c3621e47 to your computer and use it in GitHub Desktop.
codigo para suma y resta simple...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
int main(int argc, char **argv) | |
{ | |
int opcion; | |
int cantidad_val = 0; | |
int contador = 0; | |
int sumando = 0; | |
int resultado = 0; | |
int res1 = 0; | |
int res2 = 0; | |
int reset = 1; | |
while(reset <= 1){ | |
printf("¿Qué desea realizar?: 1) suma, 2) resta, 3) salir. \n"); | |
scanf("%d", &opcion); | |
if(opcion == 1){ | |
printf("¿Cuantos valores desea sumar?. \n"); | |
scanf("%d", &cantidad_val); | |
while(contador < cantidad_val){ | |
printf("Introduzca el nuevo valor: "); | |
scanf("%d", &sumando); | |
resultado = resultado + sumando; | |
contador++; | |
} | |
printf("El resultado es: %d", resultado); | |
} | |
else if(opcion == 2){ | |
printf("Introduzca el primer valor: "); | |
scanf("%d", &res1); | |
printf("\nIntroduzca el segundo valor: "); | |
scanf("%d", &res2); | |
resultado = res1 - res2; | |
printf("\nEl resultado es: %d \n", resultado); | |
} | |
else if(opcion == 3){ | |
return 0; | |
} | |
else{ | |
printf("Valor invalido, por favor colocar valores en el rango..."); | |
system("clear"); | |
} | |
resultado = 0 | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment