#include #include #include //HECHO POR ELIO SALINAS// main() { system("title PROGRAMA PARA SABER LA EDAD"); system("color 67"); const int A = 2012; int a,e; printf("\t\tSABER AL EDAD QUE TIENE\n"); printf("Introduzca su aņo de nacimiento: "); scanf("%i",&a); e = A-a; printf("\nEn 2012 usted cumple %i aņos.\n",e); getch(); }