#include #include #include //HECHO POR ELIO SALINAS// float A,B; main() { system("title PROGRAMA DE CONVERTIR DE DOLAR A EURO"); system("color 35"); printf("\t\tDE DOLAR A EURO \n"); printf("DOLAR: "); scanf("%f",&B); A=B*0.81; printf("\nEN EURO: %.3f\n",A); getch(); }