Question: Given main ( ) , define the Team class ( in files Team.h and Team.cpp ) . For class member function GetWinPercentage ( ) ,
Given main define the Team class in files Team.h and Team.cpp For class member function GetWinPercentage the formula is:
teamWins teamWins teamLosses
Note: Use casting to prevent integer division.
Ex: If the input is:
Ravens
where Ravens is the team's name, is number of team wins, and is the number of team losses, the output is:
Congratulations, Team Ravens has a winning average!
If the input is Angels the output is:
Team Angels has a losing average.
main.cppCant be chnaged
#include
#include
#include "Team.h
using namespace std;
int main
string name;
int wins;
int losses;
Team team;
cin name;
cin wins;
cin losses;
team.SetTeamNamename;
team.SetTeamWinswins;
team.SetTeamLosseslosses;
if teamGetWinPercentage
cout "Congratulations, Team team.GetTeamName
has a winning average!" endl;
else
cout "Team team.GetTeamName has a losing average." endl;
Team.h
#ifndef TEAMH
#define TEAMH
#include
class Team
TODO: Declare private data members teamName, teamWins, teamLosses
TODO: Declare mutator functions
SetTeamName SetTeamWins SetTeamLosses
TODO: Declare accessor functions
GetTeamName GetTeamWins GetTeamLosses
TODO: Declare GetWinPercentage
;
#endif
Team.cpp
#include "Team.h
using namespace std;
TODO: Implement mutator functions
SetTeamName SetTeamWins SetTeamLosses
TODO: Implement accessor functions
GetTeamName GetTeamWins GetTeamLosses
TODO: Implement GetWinPercentage
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
