Advertisement
Guest User

Untitled

a guest
Dec 12th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <conio.h>
  3.  
  4. float a,b;
  5.  
  6. int main()
  7. {
  8. printf("Ingresa la cantidad de dolares:\n");
  9. scanf("%f",&a);
  10. b = a * 18.58;
  11. printf("Tienes %f ", b, " pesos");
  12. getch;
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement