2023 Provide Java code for a simple class of your choice Be sure | Assignment Collections

Computer Science 2023 Create Your Own Unique Java Class

2023 Provide Java code for a simple class of your choice Be sure | Assignment Collections

Provide Java code for a simple class of your choice. Be sure to include at least one constructor, two methods and two fields. The fields should be private.

Create a test class to constuct and call the methods of your class.

Describe your class and demonstrate your code functions properly.

Respond to other student postings by testing their Unique classes.

—————————————————————————————————————————————————–

*************THE “OTHER STUDENT’S POSTING****************************************************

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 * This program allows a user to create a circle object by defining its radius.
 * The class, Circle, allows a user to find the diameter, circumference,
 * and area of the defined circle.
 * @author Lincoln
 */
import java.util.Scanner;

public class CircleTester {
    public static void main(String[] args){
        //Declare radius variable placeholder.
        double radius;
       
        //Declare and initialize a Scanner object.
        Scanner keyboard = new Scanner(System.in);
       
        //Get radius from user.
        System.out.print(“Enter radius of circle: “);
        radius = keyboard.nextDouble();
       
        //Create new Circle object.
        Circle circle = new Circle(radius);
       
        /*Call toString method which calls a getter methods:
        getRadius(), getDiameter(), getCircumference(), getArea()*/
        String str = circle.toString();
       
        //Print string; can also be printed via System.out.print or println
        circle.displayString();
        System.out.println();
       
        //Get new radius from user.
        System.out.print(“Enter radius of new circle: “);
        radius = keyboard.nextDouble();
       
        /*Replace radius from same Circle object; testing setRadius(double r)
        method.*/
        circle.setRadius(radius);
       
        /*Call toString method which calls a getter methods:
        getRadius(), getDiameter(), getCircumference(), getArea()*/
        str = circle.toString();
       
        //Print string; can also be printed via System.out.print or println
        circle.displayString();
    }
}
————————————————————————————————————————————————-

************************SAME STUDENT’S “CIRCLE” CODING*************************************************

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 * This program allows a user to create a circle object by defining its radius.
 * The class, Circle, allows a user to find the diameter, circumference,
 * and area of the defined circle.
 * @author Lincoln
 */
import java.lang.Math;

public class Circle {
    //Declare and/or initialize fields.
    private final double PI = 3.14;
    private double radius, diameter;
   
    //Loaded constructor; requires radius parameter.
    public Circle(double r){
        radius = r;
        diameter = radius * 2;
    }
   
    //Assessor/mutator methods.
    public void setRadius(double r)     {radius = r; diameter = radius * 2;}
    public double getRadius()           {return radius;}
    public double getDiameter()         {return diameter;}
   
    //Get circumference of the circle.
    public double getCircumference(){
        return PI * diameter;
    }
   
    //Get area of the circle.
    public double getArea(){
        return PI * (Math.pow(radius, 2));
    }
   
    /*toString method for format/output; unnessary for printing, as
    displayString() method handles string creation, printing, and allocated
    memory deletion; TESTING PURPOSES ONLY.*/
    public String toString(){
        String str = “Radius of the circle: ” + getRadius() +
                     “nDiameter of the circle: ” + getDiameter() +
                     “nCircumference of the circle: ” + getCircumference() +
                     “nArea of the circle: ” + getArea();
       
        return str;
    }
   
    //Print/output toString.
    public void displayString(){
        System.out.println(toString());
    }
}
——————————————————————————————————————————————————

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

#write essay #research paper #blog writing #article writing #academic writer #reflective paper #essay pro #types of essays #write my essay #reflective essay #paper writer #essay writing service #essay writer free #essay helper #write my paper #assignment writer #write my essay for me #write an essay for me #uk essay #thesis writer #dissertation writing services #writing a research paper #academic essay #dissertation help #easy essay #do my essay #paper writing service #buy essay #essay writing help #essay service #dissertation writing #online essay writer #write my paper for me #types of essay writing #essay writing website #write my essay for free #reflective report #type my essay #thesis writing services #write paper for me #research paper writing service #essay paper #professional essay writers #write my essay online #essay help online #write my research paper #dissertation writing help #websites that write papers for you for free #write my essay for me cheap #pay someone to write my paper #pay someone to write my research paper #Essaywriting #Academicwriting #Assignmenthelp #Nursingassignment #Nursinghomework #Psychologyassignment #Physicsassignment #Philosophyassignment #Religionassignment #History #Writing #writingtips #Students #universityassignment #onlinewriting #savvyessaywriters #onlineprowriters #assignmentcollection #excelsiorwriters #writinghub #study #exclusivewritings #myassignmentgeek #expertwriters #art #transcription #grammer #college #highschool #StudentsHelpingStudents #studentshirt #StudentShoe #StudentShoes #studentshoponline #studentshopping #studentshouse #StudentShoutout #studentshowcase2017 #StudentsHub #studentsieuczy #StudentsIn #studentsinberlin #studentsinbusiness #StudentsInDubai #studentsininternational