Question: package edu.buffalostate.cis 4 2 5 . sp 2 4 . put - your - username - here; / * * * * File: Triangle.java *

package edu.buffalostate.cis425.sp24.put-your-username-here;
/**
*
* File: Triangle.java
*
* Create a Java class named Triangle that represents a "triangle"
* with the following characteristics:
*
*1) The class has three private integer instance variables
*(S1, S2, S3) to store the sides of the triangle.
*2) This class has two constructors:
* Constructor #1- has no parameters and initializes the
* triangle's sides to 0
* Constructor #2- has three integer parameters that
* initializes the triangle's sides
*3) This class has a method calculatePerimeter() which
* returns the perimeter (s1+s2+s3) of the triangle as an
* integer
*4) This class contains a main() method which creates an
* instance of the triangle object with
* S1=10, S2=5, S3=2 and computes the object's perimeter
*(via calculatePerimeter) and outputs the result to the
* user's screen.
*
*/
/**
*
* @author put-your-name-here
*
*/
public class Triangle {
private int ___________________;
public Triangle (){
___________________
}
public Triangle ( int s1, int s2, int s3){
___________________
}
public int calculatePerimeter(){
___________________
}
public static void main( String args[]){
Triangle t = new __________________; System.out.println("The perimeter of t is: "+ t.calculatePerimeter());
}
}
When you have this Exercise ready for me to view and grade you should upload your .java file here.
/**
*
* File: Triangle.java
*
* Create a Java class named Triangle that represents a "triangle"
* with the following characteristics:
*
*1) The class has three private integer instance variables
*(S1, S2, S3) to store the sides of the triangle.
*2) This class has two constructors:
* Constructor #1- has no parameters and initializes the
* triangle's sides to 0
* Constructor #2- has three integer parameters that
* initializes the triangle's sides
*3) This class has a method calculatePerimeter() which
* returns the perimeter (s1+s2+s3) of the triangle as an
* integer
*4) This class contains a main() method which creates an
* instance of the triangle object with
* S1=10, S2=5, S3=2 and computes the object's perimeter
*(via calculatePerimeter) and outputs the result to the
* user's screen.
*
*/
/**
*
* @author put-your-name-here
*
*/
public class Triangle {
private int ___________________;
public Triangle (){
___________________
}
public Triangle ( int s1, int s2, int s3){
___________________
}
public int calculatePerimeter(){
___________________
}
public static void main( String args[]){
Triangle t = new __________________;
System.out.println("The perimeter of t is: "+ t.calculatePerimeter());
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!