C++
Please complete the implementation of the following source code (Question3.cpp). You need to add your code in the source code where the comment “// your code” locates. After you finish the implementation, please also provide the output of your program.
#include <iostream>
using namespace std;
class Shape
{
protected:
// your code
public:
void setWidth (int w)
{
// your code
}
void setHeight (int h)
{
// your code
}
};
class Rectangle: public Shape
{
public:
int getArea ()
{
// your code
}
};
class Triangle: public Shape
{
public:
int getArea ()
{
// your code
}
};
int main (){
Rectangle r;
Triangle t;
r.setWidth(1);
r.setHeight(2);
t.setWidth(3);
t.setHeight(4);
cout << r.getArea() << endl;
cout << t.getArea() << endl;
return 0;
}#include <iostream>
using namespace std;
class Shape {
protected:
int width, height;
public:
void setWidth(int w) {
width = w;
}
void setHeight(int h) {
height = h;
}
};
class Rectangle : public Shape {
public:
int getArea() {
return width * height;
}
};
class Triangle : public Shape {
public:
int getArea() {
return (width * height) / 2;
}
};
int main() {
Rectangle r;
Triangle t;
r.setWidth(1);
r.setHeight(2);
t.setWidth(3);
t.setHeight(4);
cout << r.getArea() << endl;
cout << t.getArea() << endl;
return 0;
}
C++ Please complete the implementation of the following source code (Question3.cpp). You need to add your...
Hello I have a question. I would like to check if the code follows this requirement. Rectangle.h - A complete Rectangle Class including both declaration and definition appRectangle,cpp separate in two different files the class definition and implementation Code: rectangle.h // Rectangle class declaration. class Rectangle { private: double width; double length; public: void setWidth(double); void setLength(double); double getWidth() const; double getLength() const; double getArea() const; }; //************************************************** // setWidth assigns a value to the width member. * //************************************************** void...
(((
Using Only The mentioned Concepts Solve the following question
in DETAILS “ Take your time but don’t disappoint me
plleeaasseee”:
1- Control structure (if/if else/while/for/switch/do while/
break continue)
2- Functions
3- Arrays
4- pointers and strings
5- classes
6- file processing
)))
if it was a program i need to see the code printed on computer
and the output too please .
10. Write a C++code that include two classes: Rectangle and Triangle as shown below: #include <iostream> using...
Given a matrix, clockwise-rotate elements in it. Please add code to problem3.cpp and the makefile. I have also given the main_problem3.cpp and problem3.h to test. problem3.cpp::: #include "problem3.h" // A function to rotate a matrix mat[][MAX] void rotatematrix(int m, int n, int mat[][MAX]) { // your code here } Makefile::: all : problem3.o g++ -o mainp3 # your code here problem3.o : problem3.h problem3.cpp # your code here clean: rm -f *.o mainp3 main_problem3.cpp::: #include <iostream>...
Need C++ Code (Please put //comments on there too) 1. Complete the following code: Design a class called Circle. The class should have an integer member variable named radius and three member functions; setRadius, getRadius, calArea; the functions' prototypes should be done inside the class declaration and the functions' definitions should come after the main function #include <iostream> using namespace std; const double PI = 3.14; // fill in the declaration of the class Circle here int main() { Circle...
Keep getting this error message when trying to compile in main1.cpp. Need help figuring out how to make it compile. Thank you for your time. Error Message: main.cpp:(.text+0x13): undefined reference to `circle::circle()' main.cpp:(.text+0x32): undefined reference to `circle::circle(double)' main.cpp:(.text+0x3e): undefined reference to `circle::getArea() const' main.cpp:(.text+0x53): undefined reference to `circle::getRadius() const' main.cpp:(.text+0xb3): undefined reference to `circle::getArea() const' main.cpp:(.text+0xc8): undefined reference to `circle::getRadius() const' main.cpp:(.text+0x157): undefined reference to `circle::setRadius(double)' main.cpp:(.text+0x163): undefined reference to `circle::getArea() const' main.cpp:(.text+0x178): undefined reference to `circle::getRadius() const' main.cpp:(.text+0x207): undefined...
Do not change anything in the supplied code below that will be the Ch12_Ex9.cpp except to add documentation and your name. Please use the file names listed below since your file will have the following components: Ch12_Ex9.cpp given file //Data: 18 42 78 22 42 5 42 57 #include <iostream> #include "unorderedArrayListType.h" using namespace std; int main() { unorderedArrayListType intList(25); int number; cout << "Enter 8 integers: "; for (int count = 0; count < 8; count++)...
previous assignment code /*C++ test program to test the classes, Animal, Mammal and Cat and print the results on console window.*/ //Main.cpp //include header files #include<iostream> //include Animal, Mammal and Cat header files #include "Animal.h" #include "Mammal.h" #include "Cat.h" using namespace std; int main() { //create Animal object Animal animal("Dog","Mammal",4); cout<<"Animal object details"<<endl; cout<<"Name: "<<animal.getName()<<endl; cout<<"Type: "<<animal.getType()<<endl; cout<<"# of Legs: "<<animal.getLegs()<<endl; cout<<endl<<endl; //create Cat object Cat cat("byssinian cat","carnivorous mammal",4,"short...
Please help! Studying for my c++ test! What does the following code produce? include <iostream> using namespace std; void my_function(int n); void main() { my_function(546); } void my_function(int n) { if (n < 10) cout << n << endl; else { my_function(n/10); cout << (n%10) << endl; } } What is the output of the following code? int j=32, k=5, r; r = j ^ k; cout << r...
HI USING C++ CAN YOU PLEASE PROGRAM THIS ASSIGNMENT AND ADD
COMMENTS:
stackARRAY:
#include<iostream>
#define SIZE 100
#define NO_ELEMENT -999999
using namespace std;
class Stack {
int arr[SIZE]; // array to store Stack elements
int top;
public:
Stack() {
top = -1;
}
void push(int); // push an element into Stack
int pop(); // pop the top element from Stack
int topElement(); // get the top element
void display(); // display Stack elements from top to bottom
};
void Stack...
Given the following code: #include <iostream> #include <iomanip> using namespace std; class Animal{ private: int height; int weight; public: void setHeight(int h){ height = h; } int getHeight(){ return height; } void setWeight(int w){ weight = w; } int getWeight(){ return weight; } virtual void makeSound() = 0; virtual void eat(); }; class Dog: public Animal{ public: void makeSound(){ cout << "Bow Bow\n"; } void eat (){ cout <<"The dog is eating\n"; } void Catch(){ cout << "The dog is...