//Program Mayor #include int array[10], i, max; main (void) { textcolor (9); textbackground (1); clrscr (); for (i=0 ; i<10 ; i++) { gotoxy (1,1); printf ("Teclea el %d n£mero: ", i+1); textcolor (15); clreol (); scanf ("%d", &array[i]); if (i == 0) max = array [0]; if (max < array [i]) max = array [i]; } textcolor (4); clreol (); printf ("%d", max); getch (); return 0; }