TrabalhosGratuitos.com - Trabalhos, Monografias, Artigos, Exames, Resumos de livros, Dissertações
Pesquisar

Calculadora-Algoritmo

Por:   •  11/4/2015  •  Trabalho acadêmico  •  885 Palavras (4 Páginas)  •  289 Visualizações

Página 1 de 4

#include <stdio.h>

int main()

{

double number1 = 0.0; /* First operand value a decimal number */

double number2 = 0.0; /* Second operand value a decimal number */

char operation = 0; /* Operation - must be +, -, *, /, or % */

char answer = 0; /* Added to store answer for continuing */

char Fim = 0;

do

{

printf("\nATPS N2 Calculadora. Entre com a operacao\n"); /*Modified */

scanf("%lf %c %lf", &number1, &operation, &number2);

/* Code to check the input goes here */

switch(operation)

{

case '+': /* No checks necessary for add */

printf("= %lf\n", number1 + number2);

break;

case '-': /* No checks necessary for subtract */

printf("= %lf\n", number1 - number2);

break;

case '*': /* No checks necessary for multiply */

printf("= %lf\n", number1 * number2);

break;

case '/':

if(number2 == 0) /* Check second operand for zero */

printf("\n\n\aDivision by zero error!\n");

else

printf("= %lf\n", number1 / number2);

break;

...

Baixar como (para membros premium)  txt (2.2 Kb)   pdf (43.4 Kb)   docx (12.5 Kb)  
Continuar por mais 3 páginas »
Disponível apenas no TrabalhosGratuitos.com