Practical 12 Configure network topology using cisco packet tracer. PDF

Title Practical 12 Configure network topology using cisco packet tracer.
Author dna dhoni
Course Translation & Conversation
Institution University of Delhi
Pages 5
File Size 130.5 KB
File Type PDF
Total Downloads 104
Total Views 156

Summary

Configure network topology using cisco packet tracer.Configure network topology using cisco packet tracer.Configure network topology using cisco packet tracer.Configure network topology using cisco packet tracer....


Description

Practical 12 Create a base class called shape, Use this class to store two double type values that can be used to compute the area of figures. Derive two specific classes called triangle and rectangle from the base shape. Add to the base class, a member function getdata() to initialize base class data members and another member function display_area() to compute and display area of figures. Make display_area() as a virtual function and redefine the function in the derived class to suit their requirements. Using these three classes, design a program that will accept dimensions of a triangle or a rectangle interactively and display area. Input: #include #include #include using namespace std; class Shape { public: double a, b; void get_data() { cin >> a >> b; } virtual void display_area(){}; }; class Triangle : public Shape { public: void display_area() { cout...


Similar Free PDFs