Advertisement
idsystems

Practica 17 - Prestamo

Jan 16th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.78 KB | None | 0 0
  1. // Program: prestamo.cc
  2. // Author:  Yoan Pinzon
  3. // Date:    Agosto 30, 2006
  4.  
  5. #include <iostream>
  6. #include <iomanip>
  7. #include <cmath>
  8.  
  9. using namespace std;
  10.  
  11. int main()
  12. {
  13.    double c, n, i, p;
  14.  
  15.    cout.setf(ios::fixed); // Si quiere saber para que es este comando: borre la linea
  16.                           // y compile el programa para que vea la diferencia!
  17.  
  18.    cout << "Calculadora de Prestamos" << endl;
  19.    cout << "========================" << endl;
  20.  
  21.    cout << "Entre el valor del prestamo (C)= "; cin >> c;
  22.    cout << "Durante cuantos meses desea pagar (N)= "; cin >> n;
  23.    cout << "Cual es la tasa de interes (I)= "; cin >> i;
  24.  
  25.    i /= 100; i += 1.0;
  26.  
  27.    p = c * pow( i, n );
  28.  
  29.    cout << "La cantidad audedada es de " << setprecision(2) << p << endl;
  30.  
  31.    return 0;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement