Pueden darme viendo si este programa esta vien gracias:
//Determinar el mayor y el menor de N números
//Programado por:Edwin Hernández
#include<iostream.h>
#include<conio.h>
void main()
{
int n,i,num,may,men;
cout<<"\Ingrese la cantidad de numeros:";
cin>>n;
cout<<"\nIngrese un numero:";
cin>>num;
may=num;
may=num;
for(i=1;(i<=(n-1));i++)
{
cout<<"\nIngrese"<<i<<":";
cin>>num;
if(num>may)
may=num;
else
{
if(num<=men)
men=num;
}
}
cout<<"\nEl numero mayor es:"<<may;
cout<<"\nEl numero menor es:"<<men;
getch();
}