I need help finishing my C++ Godzilla fight homework, I uploaded my cpp file as well.
1)We are now going to properly construct our object correctly. Add a default constructor that sets the name to “Godzilla”, the health to a random value between [50, 100], and the power to a random value between [10, 25].
Also add a public print()
function that print’s out the object’s name, health, and power to the standard out in the following format:
name (P: power) - H: health
Where the values name
, power
, and health
have been replaced with the corresponding data member’s value.
Now in main, create two Godzilla
objects – one named godzilla
and the other named mechagodzilla
. Prompt the user to provide the name, health, and power of godzilla
and use the corresponding setters. mechagodzilla
should be created using the default constructor.
To verify your objects are correct, call the print()
function for each of godzilla
and mechagodzilla
.
2) Currently, when the godzilla
object is created we need to call three different setters. Add a parameterized constructor that allows a user to create a new Godzilla object specifying the name, health, and power.
Now in main, after prompting the user for the values create the godzilla
object using the parameterized constructor instead of the setters.
It’s now time for godzilla
and mechagodzilla
to go to battle. Add an attack
function as described below:
Godzilla
object as a parameter. The function should modify the target’s health by subtracting the callee’s power. It should also print out a message in the form of “Callee’s Name attacks Target’s Name.” If the target’s health falls below or equal to zero, print out a second message stating “Target’s Name has been vanquished.”Now in main, have godzilla
attack mechagodzilla
once. Then, if mechagodzilla
is still alive, have mechagodzilla
attack godzilla
until godzilla
has been vanquished. Your program should end at that point.
3)
Now add the following function to your class:
greet
function that accepts another Godzilla
object as a parameter which is passed by constant reference. That is, the parameter should be marked const
so that the function cannot inadvertently change the target’s values. The function should print out a message in the form of “Callee’s Name bows to Target’s Name.”Finally, in main before the two Godzillas do battle, have the two Godzilla objects greet each other. As in, the code would look like
godzilla.greet( mechaGodzilla );
mechaGodzilla.greet( godzilla );
Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.
You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.
Read moreEach paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.
Read moreThanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.
Read moreYour email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.
Read moreBy sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.
Read more