#include <stdio.h>
#include <stdlib.h>
int max(int x, int y)
{
if (x < y)
return y;
else
return x;
}//final de max
int main()
{
int m, n;
printf("Introduzca dos numeros enteros: ");
scanf("%d %d", &m,&n);
printf("Maximo de %d y %d es %d\n", m,n,max(m, n));
system("PAUSE");
return 0; //terminacion exitosa
}//fin de main
No hay comentarios:
Publicar un comentario