Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create a new Java project called 'Assignment 1 ' 2 ) Create a new Java class called 'Circle' with the following attributes: - A private

Create a new Java project called 'Assignment1'
2) Create a new Java class called 'Circle' with the following attributes:
- A private variable for 'diameter'
- A public method called getDiameter()
- A public method called setDiameter()
- A public method called getArea()
- A public constructor that takes a single parameter (diameter)
- A public constructor that takes no parameters (defaults diameter to "1")
3) Write code that performs the following steps (in order):
- Create a new circle called circle1, without passing any parameters to the constructor
- Create a new circle called circle2, passing the value '5' to the constructor.
- Print out the area of circle1
- Print out the area of circle2
- Set the diameter of circle1 to 10
- Print out the diameter of circle1
- Print out the area of circle1

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions