Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a class that implements a Square shape. Class Square should contain a Side property for accessing. Private data Provide a constructor that takes a
Write a class that implements a Square shape. Class Square should contain a Side property for accessing. Private data Provide a constructor that takes a side length as a value.
Also Provide the following properties: a) Perimeter returns 4 x Side. b) Area returns Side x Side. c) Diagonal returns the square root of the expression (2 x Side). The perimeter, Area and Diagonal properties should not have corresponding instance variables; rather their Get accessors should use the Side property s value in calculations that return the desired values. Write an app to test your new Square class. C:\Users\frans.rampai\sourceepos\SquareApp\SquareApp\bin\Debug\SquareApp.exe Enter the length of your sqaure: 4 Perimeter of Your Square- 16 CMI Area of your square-16 CM Diagonal of your square-5,65685424949238 CM
Step by Step Solution
★★★★★
3.42 Rating (158 Votes )
There are 3 Steps involved in it
Step: 1
Code using System class Square private int side public Sq...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started