include <cstdlib>
#include <iostream>
#include <iomanip>
#include <stdlib.h>
using namespace std;
void printintromessage ();
void getUserInput (char& Y);
int main(int argc, char *argv[])
{
const int numofgamesinseries = 3;
const int numofplayersonteam = 4;
int i, score[numofgamesinseries];
int j, players[numofplayersonteam];
char Y = Y;
printintromessage ();
getUserInput (Y);
do
{
if (Y == 'Y' || Y == 'y')
{
cout <<"Enter scores for team 1" << endl;
for (j = 1; j <= numofplayersonteam; j++)
{
for (i = 1; i < numofgamesinseries; i++)
{
cout << "Enter player " << j << "'s score " << i << ": ";
cin >> score[i];
if (score [i] > 0 && score [i] <= 300)
{
cout << "Game 1 : " << score[0] << endl;
cout << "Game 2 : " << score[1] << endl;
cout << "Game 3 : " << score[2] << endl;
cout << "Series : " << score[0]+score[2]+score[3] << endl;
cout << "AVG. : " << ((score[1]+score[2]+score[3])/numofgames… << endl;
cout << "" << endl;
}
else
{
cout << score[i] << " is not a valid score ! Score must be from 0 to 300" << endl;
}
}
}
}
else
{
cout << "All finished ? Thank you !" << endl;
}
}
while ((Y == 'Y' || Y == 'y'));
system("PAUSE");
return EXIT_SUCCESS;
}
void printintromessage ()
{
cout << "This program processes bowling scores." << endl;
cout << "The user is asked to enter 3 bowling scores" << endl;
cout << "for each person on the team. There are 4 people" << endl;
cout << "per team. After all the scores are entered" << endl;
cout << "for a player, the program will list the individual" << endl;
cout << "game scores,the player's total score (series), and" << endl;
cout << "the player's average.After each team's input is complete," << endl;
cout << "the program will list the team's total scores by game," << endl;
cout << "the team's total score (series)and the team's average." << endl;
cout << "The user will then be asked if he/she wants to" << endl;
cout << "enter more data. If not, the program will list the" << endl;
cout << "team with the highest total score (series) and that " << endl;
cout << "total. If the user wants to enter more data," << endl;
cout << "the above process is repeated." << endl;
cout << " " << endl;
}
void getUserInput (char& Y)
{
cout << "Do you want to enter (more) data?" << endl;
cout << "Enter Y to continue, anything else to quit: ";
cin >> Y;
cout << " " << endl;
}
What the code is SUPPOSED to do is take in 3 scores each for all 4 players. The program is then supposed to check if the value input is between 0 and 300 and if it is output game 1, game 2, game 3, series and average. If a number between 0 and 300 ISNT input it should reprompt the user to enter a correct value. This is ideally what i need the code to do
What my code is actually doing is spitting out garbage values, please help!