Question

In: Computer Science

2) Complete the parameterized constructor that takes arguments that are used to initialize ALL class’s member...

2) Complete the parameterized constructor that takes arguments that are used to initialize ALL class’s member variables. [2 points] 3) Complete the code for getTitle() member function. The function returns the title of the Song. [1 point] 4) Complete the code for getDurationSec() member function, which returns the duration in seconds instead of minutes. [2 points] 5) Write member function definitions for three member functions below: [3 points] void setTitle(string t); //set title to t void setAuthor(Author a); //set author to a void setDurationMin(double d); //set durationMin to d 6) Demonstrate how you can use the Song class in the main() function. Prompt users to enter the details of songs, store each song in a list (vector) then print out the Song objects from the list. The grading rubric for this question is shown below

Solutions

Expert Solution

CODE:
#include <iostream>
#include <string>
#include <vector>

using namespace std;

class Song
{
public:
   Song(string title,string author,double min);
   ~Song();
   string getTitle();
   string getAuthor();
   double getDurationSec();
   void setTitle(string t);
   void setAuthor(string a);
   void setDurationMin(double d);
private:
   string m_title;
   string m_author;
   double m_duration;
};

Song::Song(string title, string author, double min)
{
   m_title = title;
   m_author = author;
   m_duration = min;
}

string Song::getTitle()
{
   return m_title;
}

string Song::getAuthor()
{
   return m_author;
}

double Song::getDurationSec()
{
   return m_duration * 60;
}

void Song::setTitle(string t)
{
   m_title = t;
}

void Song::setAuthor(string a)
{
   m_author = a;
}

void Song::setDurationMin(double d)
{
   m_duration = d;
}

Song::~Song()
{
}

int main()
{
   vector<Song> songs;
   int i = 0;
   while(i < 3)
   {
       string title, author;
       double dur;
       cout << "\nENter the Title of the song";
       cin >> title;
       cout << "\nENter the author of the song";
       cin >> author;
       cout << "\nENter the duration of the song";
       cin >> dur;
       Song s(title, author, dur);
       songs.push_back(s);
       ++i;
   }

   for(Song s : songs)
   {
       cout << "\nTitle : " << s.getTitle();
       cout << "\nAuthor : " << s.getAuthor();
       cout << "\nTitle : " << s.getDurationSec();
   }

   return 0;
}


Related Solutions

Step 1: Extend the dispenserType class per the following specifications. Add a parameterized constructor to initialize...
Step 1: Extend the dispenserType class per the following specifications. Add a parameterized constructor to initialize product name (name), product cost (cost) and product quantity (noOfItems). This constructor will be invoked from main.cpp. One such call to this constructor will look like: dispenserType sanitizer("hand sanitizer", 50, 100); Add the declaration and definition of this parameterized constructor to .h and .cpp files. Step2: Define a new class, cashRegister. Start by creating cashRegister.h and cashRegister.cpp files. Be sure to update your CMakeLists.txt...
Task 1: Implement the constructor for the Hostess struct. It must initialize all member variables, including...
Task 1: Implement the constructor for the Hostess struct. It must initialize all member variables, including any arrays. There is another function that performs initialization. You must change the program so that the object’s initialization is done automatically, i.e. no explicit call is needed for an initialization function. #ifndef HOSTESS_H #define HOSTESS_H #include "Table.h" #include <iostream> struct Hostess{ void Init(); void PlaceArrivalInQueue(int arrivals); void ShiftLeft(); void Print(int hour, int minute, int arrivals); int GetNumTables(){return numTables;} int Seat(int table, int time);...
(1) default constructor which initalizes all the coefficients to 0 (2) a constructor that takes three...
(1) default constructor which initalizes all the coefficients to 0 (2) a constructor that takes three parameters public QuadraticExpression(double a, double b, double c) (3) a toString() method that returns the expression as a string. (4) evaluate method that returns the value of the expression at x public double evaluate(double x) (5) set method of a, b, c public void setA(double newA) public void setB(double newB) public void setC(double newC) (6) public static QuadraticExpression scale( double r, QuadraticExpression q) returns...
This class has two constructors. The default constructor (the one that takes no arguments) should initialize the first and last names to "None", the seller ID to "ZZZ999", and the sales total to 0.
For this assignment, implement and use the methods for a class called Seller that represents information about a salesperson.The Seller classUse the following class definition:class Seller { public:   Seller();   Seller( const char [], const char[], const char [], double );        void print();   void setFirstName( const char [] );   void setLastName( const char [] );   void setID( const char [] );   void setSalesTotal( double );   double getSalesTotal(); private:   char firstName[20];   char lastName[30];   char ID[7];   double salesTotal; };Data MembersThe data members for the class are:firstName holds the Seller's first namelastName holds the Seller's last nameID holds the Seller's id numbersalesTotal holds the Seller's sales totalConstructorsThis class has two constructors. The default constructor (the one that takes...
2. Define a function max_n(arr, n) that takes in an array and an integer as arguments....
2. Define a function max_n(arr, n) that takes in an array and an integer as arguments. Your function will then return the n largest values from that array as an array containing n elements. It is safe to assume that arr will have at least n elements. The resulting array should have the largest number on the end and the smallest number at the beginning. For Example: max_n(np.array([1,2,3,4,5]), 3) returns np.array([3,4,5]) max_n(np.array([10,9,8,7,6,5]), 4) returns np.array([7,8,9,10]) max_n(np.array([1,1,1]), 2) returns np.array([1,1])
12. All of the following are arguments used by proponents of offshoring except: a. It creates...
12. All of the following are arguments used by proponents of offshoring except: a. It creates enormous value for firms and economies. b. Western firms are able to tap into low-cost and high-quality labor. c. Firms can focus on their core capabilities. d. For every dollar spent by US firms on India, the U.S. obtains $1.13. e. It is not true that some US employees may lose their jobs. 14. Which are true regarding informal constraints? a. When formal institutional...
Write functions in Python IDLE that do the following: i) A function that takes 2 arguments...
Write functions in Python IDLE that do the following: i) A function that takes 2 arguments and adds them. The result returned is the sum of the parameters. ii) A function that takes 2 arguments and returns the difference, iii) A function that calls both functions in i) and ii) and prints the product of the values returned by both.
ASSUME THE HYPERBOLIC PARALLEL POSTULATE. SHOW AS COMPLETE ARGUMENTS AS POSSIBLE AND INDICATE ALL STEPS OF...
ASSUME THE HYPERBOLIC PARALLEL POSTULATE. SHOW AS COMPLETE ARGUMENTS AS POSSIBLE AND INDICATE ALL STEPS OF REASONING. DIAGRAMS SHOULD ILLUSTRATE ALL ARGUMENTS, BUT REMEMBER THAT DIAGRAMS BY THEMSELVES DO NOT CONSTITUTE PROOFS. Let l be a line and let P be a point not on l. Prove that there exists a line m through P such that m is parallel to l but l and m do not admit a common perpendicular
Complete Question 1a-c 1a) Write a C program that displays all the command line arguments that...
Complete Question 1a-c 1a) Write a C program that displays all the command line arguments that appear on the command line when the program is invoked. Use the file name cl.c for your c program. Test your program with cl hello goodbye and cl 1 2 3 4 5 6 7 8 and cl 1b) Write a C program that reads in a string from the keyboard. Use scanf with the conversion code %s. Recall that the 2nd arg in...
1. Glyburide, a member of the sulfonylurea family of drugs, is used to treat type 2...
1. Glyburide, a member of the sulfonylurea family of drugs, is used to treat type 2 diabetes. It binds to and closes the ATP-gated K+ channels on the pancreatic beta cells. This leads to membrane depolarization and activation of voltage-gated Ca2+ channels triggering fusion of insulin containing vesicles with the plasma membrane causing subsequent release of insulin into the blood. Given the mechanism of this drug’s action, would you expect glyburide to be useful for treating type I diabetes? Why...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT