Isaac Cruz
/
FUNCIONESBASICAS_EQ3
FUNCIONESBASICAS_EQ3
Revision 29:4f0fa64ba957, committed 2019-10-10
- Comitter:
- isaacross99
- Date:
- Thu Oct 10 19:42:32 2019 +0000
- Parent:
- 28:868b283c5f77
- Commit message:
- 0
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 868b283c5f77 -r 4f0fa64ba957 main.cpp --- a/main.cpp Wed Oct 09 02:53:15 2019 +0000 +++ b/main.cpp Thu Oct 10 19:42:32 2019 +0000 @@ -4,11 +4,13 @@ int resta(int,int); int producto(int,int); float division(int,int); -int main(void){ - int digito_1, digito_2; +int main(){ + char tecla; + int digito_1, digito_2, s, r, p; + float d; pc.printf("Ingrese un digito: "); - digito_1 = pc.getc(); - switch(digito_1){ + tecla = pc.getc(); + switch(tecla){ case '0': digito_1 = 0; break; case '1': digito_1 = 1; @@ -32,7 +34,12 @@ default: pc.printf("\n\nValor invalido."); } digito_2 = 5; - pc.printf("\n\nSuma = %d \nResta = %d \nProducto = %d \nDivision = %f", suma(digito_1,digito_2), resta(digito_1,digito_2), producto(digito_1,digito_2), division(digito_1,digito_2)); + s = suma(digito_1, digito_2); + r = resta(digito_1, digito_2); + p = producto(digito_1, digito_2); + d = division(digito_1, digito_2); + pc.printf("\n\nSuma = %d \nResta = %d \nProducto = %d \nDivision = %f", s, r, p, d); + return 0; } int suma(int digito_1,int digito_2){ int suma = digito_1 + digito_2;