JOp 7-4 Exercise 2
Thu Dec 05 2024 02:01:38 GMT+0000 (Coordinated Universal Time)
Saved by
@John_Almer
package prisoner_student_7_4;
/**
*
* @author Almer
*/
public class Prisoner_Student_7_4 {
public String name;
public double height;
public int sentence;
//Constructor
public Prisoner_Student_7_4(String name, double height, int sentence){
this.name = name;
this.height = height;
this.sentence = sentence;
}
//Methods
public void think(){
System.out.println("I'll have my revenge.");
}
}
package prisoner_student_7_4;
public class PrisonTest_Student_7_4 {
public static void main(String[] args){
Prisoner_Student_7_4 p01 = new Prisoner_Student_7_4("Bubba", 2.08, 4);
System.out.println("Name: " + p01.name);
System.out.println("Height: " + p01.height);
System.out.println("Sentence: " + p01.sentence);
}
}
content_copyCOPY
Comments