Assume the Product structure is declared as follows: struct Product { string description; // Product description int partNum; // Part number double cost; // Product cost }; 1. Add two constructors to the Product structure declaration. The first should be a default constructor that sets the description member to the null string and the partNum and cost members to zero. The second constructor should have three parameters: a string, an int, and a double. It should copy the values of the arguments into the description, partNum, and cost members. 2. Define a print function as member of the struct that prints an object of this struct in the following format. Description: Claw Hammer Part Number: 547 Part Cost: $8.29 3. Declare an array of size 5 with pointers and named it ”items”. Initilize it with user input values. 4. Write a print function (not as a member of the struct) and pass a pointer to the pointer that points to the array(double pointer) and print all the items of the array. 5. Define a max function (not as a member of the struct) that gets an array of items as an input and returns a pointer to the max element of the array. 6. Declare a 3 by 3 two dimensional array with pointers and overload a output function to get a stream object and a pointer to a 2D array as arguments and outputs column descriptions and data members of objects in format of 3*3 table into the given stream. Test your function both with and output file stream and cout stream. 7. Write a testbench to test your program properly . stream object is here. Claw hammer 547 8.29 Socket set 892 18.45 Screwdriver 345 1.50 use C++ only.
Please do 5-7 as parts 1-4 have been answered previously
# include # include #includeusing namespace std;
struct Product { string description; // Product description int partNum; // Part number double cost; // Product cost //1. Add two constructors Product(){ description =""; partNum = 0; cost = 0.0; } Product(string desc, int num, double c){ description = desc; partNum = num; cost = c; } //2. Define a print function as member of the struct that prints an object void print() const{ cout<"description:>"description:><><> cout<"part number:="">"part><><> cout<"part cost:="">"part><><><><><> }
};
//4. Write a print function (not as a member of the struct)// and pass a pointer to the pointer that points to the array(double pointer) and print all the items of the array.void print(Product * pItems){
cout<><>
for(int i=0; i<5;>5;>
pItems[i].print(); }}
int main( ) { //3. Declare an array of size 5 with pointers and named it ”items”. Initilize it with user input values. Product items[5];
cout<"product>"product>< =""> ><"enter product="" description:="" " ="" ;="" getline(cin,="">"enter> cout<"enter part="" number:="" ";="" cin="">> items[i].partNum; cout<"enter product="" cost:="" $";="" cin="">> items[i].cost; cin.ignore(); } Product* pItems = items; print(pItems);
}
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here