// Codificado por: Beastieux // Codigo fuente: Sencillador de dinero #include <iostream> using namespace std; int main() { int b10, b20, b50, b100, b200, t; cout << "Ingrese la cantidad de su dinero:" << endl; cin >> t; cout << t / 3.20 << " dolares" << endl; b200 = t / 200; t = … Continuar leyendo Código C++ – Sencillar Dinero