
Patrick B. answered 07/23/19
Tutor
4.7
(31)
Math and computer tutor/teacher
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
}