subject

Please HELP QUICK
PUT CODE DOWN BELOW

The Circle and CircleTester have been created, but they have errors. The public and private settings for variables and methods are not all correct.

Your job is to go through and fix them. You will need to make edits in both files to get them working correctly, but once complete, your output should match the output below.

Sample Output: Circle with a radius of 5.0
The diameter is 10.0
The perimeter is 31.41592653589793

CirclwTester, java : public class CircleTester {

public static void main(String[] args) {

Circle circ = new Circle(10);

circ. radius = 5;

System. out. println(circ);

System. out. println("The diameter is " + circ. getDiameter());
System. out. println("The perimeter is " + circ. getPerimeter());

}

}

Circle. java : public class Circle {

public double radius;

private Circle(double myRadius) {
radius = myRadius;
}

private void setRadius(int myRadius){
radius = myRadius;
}

private double getDiameter() {
return radius*2;
}

public double getRadius() {
return radius;
}

private double getPerimeter() {
return Math. PI*getDiameter();
}

private String toString() {
return "Circle with a radius of " + radius;
}
}

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 15:00
Atool that matches persoal skills qualities interests and talets to a career is called a
Answers: 1
question
Computers and Technology, 22.06.2019 17:40
Consider the simple 3-station assembly line illustrated below, where the 2 machines at station 1 are parallel, i.e., the product only needs to go through one of the 2 machines before proceeding to station 2.what is the throughput time of this process?
Answers: 2
question
Computers and Technology, 22.06.2019 21:40
Develop a function to create a document in the mongodb database “city” in the collection “inspections.” be sure it can handle error conditions gracefully. a. input -> argument to function will be set of key/value pairs in the data type acceptable to the mongodb driver insert api call b. return -> true if successful insert else false (require a screenshot)
Answers: 2
question
Computers and Technology, 23.06.2019 09:30
You wanted to look up information about alzheimer's, but you were unsure if it was spelled "alsheimer's" or "alzheimer's." which advanced search strategy would be useful? a) a boolean search b) using a wild card in your search c) trying different search engines d) doing a search for "alsheimer's not alzheimer's" asap. ill give brainlist.
Answers: 1
You know the right answer?
Please HELP QUICK
PUT CODE DOWN BELOW

The Circle and CircleTester have been create...
Questions
question
Physics, 27.10.2019 12:43
question
Physics, 27.10.2019 12:43
question
Biology, 27.10.2019 12:43
Questions on the website: 13722360