Yukiteru

Programa Comida en C++

Jun 26th, 2011
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int elementos_compra=0, precio=0, total=0;
  4.  
  5.  
  6. int main()
  7. {
  8. printf("Bienvenido a IPSO-FACTO - Comida Rápida y Mucho Mas -\n");
  9. printf("*****************************************************\n");
  10. printf("Cuantos productos hay en su compra: ");
  11. scanf("%i", &elementos_compra);
  12.  
  13. for (int i=0; i<elementos_compra; i++)
  14. {
  15. printf("Precio del producto #%i: ", i);
  16. scanf("%i", &precio);
  17. total = total + precio;
  18. }
  19.  
  20. printf("\n\nEl total de su compra es %i", total);
  21. printf("\nGracias por su compra en IPSO-FACTO - Comida Rápida y Mucho Mas -");
  22.  
  23. return 0;
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment