Pesquisar neste blog

terça-feira, 6 de janeiro de 2009

Algoritmo Débito - Crédito

#include cstdlib
#include iostream
#include cstdlib
#include stdio.h
#include conio.h // para usar o getchar

using namespace std;

int main()
{
int v1;
float v2, acd,acc,saldo;

v1 =1;
acc =0;
acd=0;
while (v1 != 0)
{
printf("\n 1 - Debito | 2 - Credito | 0 - Fim");
printf("\n\n Escolha o codigo: ");
scanf("%u",&v1);
if (v1 != 0)
{
printf("\n Digite um valor: ");
scanf("%f",&v2);
switch(v1)
{
case 1:
acd = acd + v2;
break;
case 2:
acc = acc + v2;
break;
}
}
printf("\n Debito: %.2f", acd);
printf("\n Credito: %.2f", acc);
printf("\n Saldo: %.2f \n", (acc - acd));
getch();
}



system("PAUSE");
return EXIT_SUCCESS;
}

Nenhum comentário: