In C++, it asks to define a new class Fighter that inherits from the Spaceship class below. - Add a private member variable: int firePower; - Create a default constructor which initializes firePower to 10 and initializes name to "X-wing" - Create a member function in Fighter void warp().  This function should increase position by 10, and decrease health by 5. - Redefine function wasHit().  Instead of decrementing health by 5, decrement it by 2.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter13: Overloading And Templates
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

1) In C++, it asks to define a new class Fighter that inherits from the Spaceship class below.

- Add a private member variable:

int firePower;

- Create a default constructor which initializes firePower to 10 and initializes name to "X-wing"

- Create a member function in Fighter void warp().  This function should increase position by 10, and decrease health by 5.

- Redefine function wasHit().  Instead of decrementing health by 5, decrement it by 2.

COde:

class Spaceship {

protected:

    string name;

    int health;

    int position;

public:

    Spaceship()

    { name = "";

      health = 100;

      position = 0; }

    void moveLeft()

    { position--; }

    void moveRight()

    { position++; }

    void wasHit()

    { health -= 5; }

};

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,