Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Exercise #1 Complete the following constructor Planet(): You must finish the declaration of the default constructor. For example: Test Result Planet p3; cout < <

Exercise #1

Complete the following constructor Planet(): You must finish the declaration of the default constructor.

For example:

Test Result
Planet p3; cout << p3.toString() << endl;
{Name: KNOWHERE,Population: 0, Habitable: False, Diameter: 8975.000000, Water: True, Closest Planet: XANDAR, Galaxy: GUARDIANS} 

Answer:(penalty regime: 0 %)

NOTE: Remember to constantly verify the Planet class to see if there anything that can help with the solution.

/*.......................................................................................................................................................................................................*/

/*Planet.h*/

#include

#include

#include

using namespace std;

class Planet{

private:

string name;

long population;

bool isHabitable;

double diameter;

bool hasWater;

string closestPlanet;

string galaxy;

/*

Area of the Planet

Furmula: area = 4 * pi * r^2

*/

double calculateArea(){

return (2.0 * acos(0.0)) * 4 * pow((getDiameter()/2), 2);

}

public:

//Constructor

Planet(string name, long population, bool isHabitable, double diameter, bool hasWater,

string closestPlanet, string galaxy){

this->name = name;

this->population = population;

this->isHabitable = isHabitable;

this->diameter = diameter;

this->hasWater = hasWater;

this->closestPlanet = closestPlanet;

this->galaxy = galaxy;

}

//Copy constructor

Planet(Planet &p2){

this->name = p2.name;

this->population = p2.population;

this->isHabitable = p2.isHabitable;

this->diameter = p2.diameter;

this->closestPlanet = p2.closestPlanet;

this->hasWater = p2.hasWater;

this->galaxy = p2.galaxy;

}

//Default Constructor

Planet();

//Getters

string getName(){return name;}

long getPopulation(){ return population;}

bool getIsHabitable(){return isHabitable;}

double getDiameter(){return diameter;}

double getArea(){return calculateArea();}

bool getHasWater(){return hasWater;}

string getClosestPlanet(){return closestPlanet;}

string getGalaxy(){return galaxy;}

//Setters

void setName(string name){this->name = name;}

void setPopulation(long population){this->population = population;}

void setIsHabitable(bool isHabitable){this->isHabitable = isHabitable;}

void setDiameter(double diameter){this->diameter = diameter;}

void setHasWater(bool hasWater){this->hasWater = hasWater;}

void setClosestPlanet(string closestPlanet){this->closestPlanet = closestPlanet;}

void setGalaxy(string galaxy){this->galaxy = galaxy;}

string toString(){

return "{Name: " + getName() + ","

+ "Population: " + to_string(getPopulation()) + ", "

+ (getIsHabitable()?"Habitable: True":"Habitable: False") + ", "

+ "Diameter: " + to_string(getDiameter()) + ", "

+ (getHasWater()?"Water: True":"Water: False") + ", "

+ "Closest Planet: " + getClosestPlanet() + ", "

+ "Galaxy: " + getGalaxy() + "}";

}

//PART #1 EXERCISES

string compareArea(Planet &p2);

double volumePlanet();

bool sameGalaxy(Planet &p2);

};

/*.................................................................................................................................................................*/

/*planet.cpp*/

#include "Planet.h"

/* EXERCISE #1

Finish the declaration of the default constructor

When a Planet is initially created it has the following default values:

Name: KNOWHERE

Population: 0

It is NOT habitable

Diameter: 8975

Closet Planet: XANDAR

It DOES HAVE water

Galaxy: GUARDIANS

*/

Planet::Planet() {

// YOUR CODE HERE

}

/*

EXERCISE #2

Return the name of biggest planet (between the target and parameter) based on area

*/

string Planet::compareArea(Planet& p2){

// YOUR CODE HERE

return "LOL";

}

/*

EXERCISE #3

Return the volume of the target planet

Formula: (4*pi*r^3)/3

*/

double Planet::volumePlanet(){

// YOUR CODE HERE

return -99.9;

}

/*

EXERCISE #4

Return true if the target planet and the parameter planet are in the same galaxy

False otherwise.

HINT: use the compare method of string

*/

bool Planet::sameGalaxy(Planet &p2){

// YOUR CODE HERE

return false;

}

/*.................................................................................................................................................................*/

#include "Planet.h"

/* EXERCISE #1 Finish the declaration of the default constructor

When a Planet is created, by unexplained means, the Planet has a default values and they are as follow: Name: KNOWHERE Population: 0 It is NOT habitable Diameter: 8975 Closet Planet: XANDAR It DOES HAVE water Galaxy: GUARDIANS */ Planet::Planet() { // YOUR CODE HERE }

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

MongoDB Applied Design Patterns Practical Use Cases With The Leading NoSQL Database

Authors: Rick Copeland

1st Edition

1449340040, 978-1449340049

More Books

Students also viewed these Databases questions

Question

8. Is emergence a matter of fate?

Answered: 1 week ago

Question

10:16 AM Sun Jan 29 Answered: 1 week ago

Answered: 1 week ago

Question

5. Arranging for the training facility and room.

Answered: 1 week ago

Question

1. Discuss the five types of learner outcomes.

Answered: 1 week ago