The solution program has been coded in C language. It can be different for any other programming language
Explanation:
#include <iostream>
using namespace std;
int main()
{
int score1,score2,score3;
cout<<"Enter Test score 1\n";
cin>>score1;
cout<<"Enter Test score 2\n";
cin>>score2;
cout<<"Enter Test score 3\n";
cin>>score3;
cout<<"Test Score 1 : "<<score1<<"\n";
cout<<"Test Score 2 : "<<score2<<"\n";
cout<<"Test Score 3 : "<<score3<<"\n";
return 0;
}