Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

use the given templete and write code in c++ and write commments please #include #include #include using namespace std; class Material { private: string name;

use the given templete and write code in c++ and write commments please

image text in transcribed

#include #include #include

using namespace std;

class Material { private: string name; int amount; float quality; public: Material() {

} Material(string name, int amount, float quality) { this->name = name; this->amount = amount; this->quality = quality; }

string getName() { return this->name; } int getAmount() { return this->amount; } float getQuality() { return this->quality; }

void print() { cout name amount quality

bool isInGoodQuality(Material*, int); bool canBeBuilt(Material*, Material*, int); vector findMissingMaterials(vector, vector);

int main() {

return 0;

}

// Check whether furniture's material has good quality in average. If the average // -- quality of the materials exceeds 0.5 then return true. bool isInGoodQuality(Material *furniture, int size) { // *** FILL THIS FUNCTION FOR PART 1 *** return false; }

// Check whether there is enough material in container or not bool canBeBuilt(Material *recipe, Material *container, int size) { // *** FILL THIS FUNCTION FOR PART 2 *** return false; }

// Find the missing materials in the container considering the recipe (missing // -- in amount) vector findMissingMaterials(vector recipe, vector container) { // *** FILL THIS FUNCTION FOR PART 3 *** return; }

Part I (20 point) Write a function that checks whether the furniture is in good quality. Assume that it is in good quality if the average quality of the materials exceeds 0.5. Part II (40 point) Write a function that check whether there is enough material in the container for building the given recipe. Part III (40 point) Write a function that finds the missing items in the container for building the given recipe. Note: Submit your answers by filling the given template. Note: Do not forget to justify your answers with comments. The codes without comments will not be evaluated

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

LO4 Specify how to design a training program for adult learners.

Answered: 1 week ago