Inactive Tutor answered 07/23/19
Tutor
New to Wyzant
using namespace std;
#include <iostream>
int main()
{
//...... code here
//..... Assume the variable score has already been declared and initialized
if ( (score<0) || (score>100))
{
std::cout << "The score is invalid." << endl;
}
// ......code continues
}