/** 4. Write a C++ program that asks the user ``How many scores do you want to enter?''. For any integer response n, the program should present n prompts of the form\\ ``enter score 1:''\\ ``enter score 2:''\\ ............\\ ``enter score n:''\\ The program should read in the n values and give the average score. Remember, the program should work for any integer n. **/ #include using namespace std; int main() { int n; double sum=0,value,average; cout <<"How many integers do you want to enter?\n"; cin>>n; for (int i=1; i<=n;i++){ cout <<"enter score "<>value; sum += value; } average=sum/double(n); cout<<"Average of the values you eneterd is "<