Programa Centro Automotivo
Por: Thiago Toneli • 22/4/2019 • Projeto de pesquisa • 546 Palavras (3 Páginas) • 192 Visualizações
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[])
{
int vEscolha;
double total = 0, quantidadeHoraServico = 0, valorHoraServico = 0, Percentual = 0;
while(true) {
printf("Menu:\n1 - Motor - R$100,00/h:\n2 - Suspensao - R$200,00/h\n3 - Freio - R$300,00/h:\n4 - Sair:\n\nOpcoes: ");
scanf("%d", &vEscolha);
switch(vEscolha){
case 1:
printf("A escolha foi R$100,00/h.\n\n");
valorHoraServico = 100;
printf("\n Digite quantas horas de Servico: ");
scanf("%lf", &quantidadeHoraServico);
total = valorHoraServico * quantidadeHoraServico;
printf("\n Total: %.2lf", total);
if (total >= 200 && total <= 1000) {
Percentual = 5;
total = total * 0.95;
} else if (total > 1000) {
Percentual = 10;
total = total * 0.9;
}
//printf("/nO desconte e de:", Percentual);
printf("\n Percentual de Desconto: %.2lf\n\n", Percentual);
printf("\n Total - Desconto: %.2lf\n\n", total);
system("pause");
Percentual = 0;
break;
case 2:
printf("A escolha foi R$200,00/h.\n\n");
valorHoraServico = 200;
printf("\n Digite quantas horas de Servico: ");
scanf("%lf", &quantidadeHoraServico);
total = valorHoraServico * quantidadeHoraServico;
printf("\n Total: %.2lf", total);
if (total >= 200 && total <= 1000) {
Percentual = 5;
total = total * 0.95;
} else if (total > 1000) {
Percentual = 10;
total = total * 0.9;
}
printf("\n Percentual de Desconto: %.2lf\n\n", Percentual);
printf("\n Total - Desconto: %.2lf\n\n", total);
...