Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main(int argc, char *argv[]) {
  5. int montoInicial;
  6.  
  7. cout<<"Ingrese cantidad monetaria"<<endl;
  8. cin>>montoInicial;
  9.  
  10.  
  11.  
  12. do {
  13. montoInicial=(montoInicial-2000);
  14. cout<<"1 Papeleta de 2,000"<<endl;
  15. } while(montoInicial>2000);
  16.  
  17. do {
  18. montoInicial=(montoInicial-1000);
  19. cout<<"1 Papeleta de 1,000"<<endl;
  20.  
  21. } while(montoInicial>1000);
  22.  
  23. return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement