/* * Lab 1 - Debugging Exercise * * name: * email: * * Fix all the bugs in this file! */ Public class Debuging { public void main(String[] args) { /* * The following code segment is intended to calculate * the area of a triangle. */ int base = 3.5; int height = 2; print("Running Debugging.java") double area = height*(base/2); print("Area is: ", area); } // Debugging