Advertisement
idsystems

CPP_Practica29 - Don Manolo

Jan 30th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.31 KB | None | 0 0
  1. // Program: manolo.cc
  2. // Author:  Yoan Pinzon
  3. // Date:    Agosto 30, 2006
  4.  
  5. #include <iostream>
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10.    int total, paga, vueltos, temp;
  11.  
  12.    cout << "Almacen Don Manolo" << endl;
  13.    cout << "==================" << endl;
  14.  
  15.    cout << "Total a pagar = "; cin >> total;
  16.    cout << "El cliente paga = "; cin >> paga;
  17.  
  18.    vueltos = paga - total;
  19.  
  20.    cout << endl;
  21.  
  22.    cout << "Vuelto = " << vueltos << endl;
  23.    cout << "Desglosado en:" << endl;
  24.  
  25.    temp=vueltos / 10000;
  26.    cout << temp << " billete(s) de 10000\n";
  27.    vueltos -= temp * 10000;
  28.  
  29.    temp = vueltos / 5000;
  30.    cout << temp << " billete(s) de 5000\n";
  31.    vueltos -= temp * 5000;
  32.  
  33.    temp = vueltos / 1000;
  34.    cout << temp << " billete(s) de 1000\n";
  35.    vueltos -= temp * 1000;
  36.  
  37.    temp = vueltos / 500;
  38.    cout << temp << " billete(s) de 500\n";
  39.    vueltos -= temp * 500;
  40.  
  41.    temp = vueltos / 100;
  42.    cout << temp << " moneda(s) de 100\n";
  43.    vueltos -= temp * 100;
  44.  
  45.    temp = vueltos / 50;
  46.    cout << temp << " moneda(s) de 50\n";
  47.    vueltos -= temp * 50;
  48.  
  49.    temp = vueltos / 10;
  50.    cout << temp << " moneda(s) de 10\n";
  51.    vueltos -= temp * 10;
  52.  
  53.    temp = vueltos / 5;
  54.    cout << temp << " moneda(s) de 5\n";
  55.    vueltos -= temp * 5;
  56.  
  57.    cout << vueltos << " moneda(s) de 1\n";
  58.  
  59.    return 0;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement