use c++ only and while-loop
if you could start it how i started it it’d be great!! (unlessim completely wrong but im looking to understand it not just getthe answer)
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int min=0,max=0, sum=0, score;
double avg;
cout << fixed<< setprecision(2);
cout << ” Enter a group of scores with -1 at the end:”;
cin >> score;
2. (while loop) Enter a group of scores with -1 at the end: 88 55
OR
OR