I want to make this code when it is greater than 25 and less than zero (negative numbers) I return to the beginning of the program "write age"
#include <iostream>
#include <conio.h>
using namespace std;
main()
{
int edad;
do{
cout<<"escribir edad "; cin>>edad;
if (edad>0 && edad<=25) {
cout<<"su edad es " <<edad;
}
else if (0>edad)
{
cout<<"la edad no es correcta \n";
}
else if (edad>25)
{
cout<<"la edad no es correcta \n";
}
}
while(edad>25);
system("PAUSE");
return 0;
getch();
}