// Program Convertir #include float galon, litro; main (void) { textcolor (9); textbackground (1); clrscr (); printf ("Introdusca el n£mero de galones: "); textcolor (15); clreol (); scanf ("%f",&galon); textcolor (4); clreol (); litro = galon * 3.785; printf ("%1.2f litros", litro); getch (); return 0; }