lunes, 17 de junio de 2013

Funcion que devuelve mayor de dos enteros

// La funcion max devuelve el numero mayor de dos enteros

#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