Write a program that asks for five test scores. The program should calculate the average test score and display it. The number displayed should be formatted in fixed-point notation, with one decimal point of precision?

#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
double score1,score2,score3,score4,score5,avg;
cout<<“enter score for first sunbject “;
cin>>score1;
cout<<“enter score for second sunbject “;
cin>>score2;
cout<<“enter score for third sunbject “;
cin>>score3;
cout<<“enter score for fourth sunbject “;
cin>>score4;
cout<<“enter score for fifth sunbject “;
cin>>score5;
avg=(score1+score2+score3+score4+score5)/5.o;
cout<<“average is :\n”<<setw(4)<<setprecision(1)<<fixed<<avg;
return 0;
}