How do i get the loop to go back and prompt using for a valid number?
#include<iostream>
#include<conio.h>
#include<iomanip>
#include<string>
using namespace std;
int main ()
{
string firstName;
string lastName;
int score1, score2, score3, score4, score5;
float totalpoints;
cout<<fixed<<showpoint<<setprecision(2);
cout<<"Please enter the student first and last name: ";
cin>>firstName>>lastName;
cout<< endl;
cout<<"Please enter the student's FIVE program scores"<<endl;
cout<<"Each score must be an integer between 0 & 100:"<<endl;
cout<<endl;
cout<<"Please enter the first program score: ";
cin>>score1;
if (score1>100)
{
cout<<"Invalid Number";
}
else if (score1<0)
{
cout<<"Invalid Number";
}
cout<<endl<<"Press any key to continue."<<endl;
getch();
return 0;
}