Colorado State University

Recitation R9 - File Input & Output
Summer 2016

CS160: Foundations in Programming


Triangle Class

Create the following instance variables and methods inside your Triangle class
  1. Two instance variables of type double named height and base.
  2. A constructor that takes two parameters and assigns those values to the instance variables.
  3. a private non-static method called area that has no parameters and returns a double
  4. a toString method that returns the following:
    Triangle, (Height: #, Base: #), Area: #
    
Height, Base, and Area should be formatted to 2 decimal places.

Testing

To make sure your Triangle class is printing what you want it to print. Create a Triangle object in your main method using the following code:
Triangle shape = new Triangle(5, 10);
System.out.println(shape);

© 2015 CS160 Colorado State University. All Rights Reserved.