Make this program run, some fill in code are left out: #include <iostream> using
ID: 3634929 • Letter: M
Question
Make this program run, some fill in code are left out:#include <iostream>
using namespace std;
// FILL IN THE CODE TO DECLARE A CLASS CALLED Square. TO DO THIS SEE
// THE IMPLEMENTATION SECTION.
int main()
{
Square box; // box is defined as an object of the Square class
float size; // size contains the length of a side of the square
// FILL IN THE CLIENT CODE THAT WILL ASK THE USER FOR THE LENGTH OF THE SIDE
// OF THE SQUARE. (This is stored in size)
// FILL IN THE CODE THAT CALLS SetSide.
// FILL IN THE CODE THAT WILL RETURN THE AREA FROM A CALL TO A FUNCTION
// AND PRINT OUT THE AREA TO THE SCREEN
// FILL IN THE CODE THAT WILL RETURN THE PERIMETER FROM A CALL TO A
// FUNCTION AND PRINT OUT THAT VALUE TO THE SCREEN
return 0;
}
//__________________________________________________________________
//Implementation section Member function implementation
//**************************************************
// setSide
//
// task: This procedure takes the length of a side and
// places it in the appropriate member data
// data in: length of a side
//***************************************************
void Square::setSide(float length)
{
side = length;
}
//**************************************************
// findArea
//
// task: This finds the area of a square
// data in: none (uses value of data member side)
// data returned: area of square
//***************************************************
float Square::findArea()
{
return side * side;
}
//**************************************************
// findPerimeter
//
// task: This finds the perimeter of a square
// data in: none (uses value of data member side)
// data returned: perimeter of square
//***************************************************
float Square::findPerimeter()
{
return 4 * side;
}
Explanation / Answer
#include using namespace std; // FILL IN THE CODE TO DECLARE A CLASS CALLED Square. TO DO THIS SEE // THE IMPLEMENTATION SECTION. class Square { private: float side; public: void SetSide(float) ; float findArea(); float findPerimeter(); }; int main() { Square box; // box is defined as an object of the Square class float size; // size contains the length of a side of the square // FILL IN THE CLIENT CODE THAT WILL ASK THE USER FOR THE LENGTH OF THE // SIDE OF THE SQUARE. (This is stored in size) coutsize; // FILL IN THE CODE THAT CALLS SetSide. box.SetSide(size); // FILL IN THE CODE THAT WILL RETURN THE AREA FROM A CALL TO A FUNCTION float Area=box.findArea(); // AND PRINT OUT THE AREA TO THE SCREEN. coutRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.