//** * Write a description of class Tester here. * * @author (your name) * @version (a version number or a date) */ public class Tester { // instance variables - replace the example below with your own float numerator; float denominator; /** * Constructor for objects of class Tester */ public Tester() { // default constructor (only) } public static void main(String[] argv) { Tester t1 = new Tester(); float result = t1.numerator/t1.denominator; System.out.println(t1.numerator + " divided by " + t1.denominator + " result is " + result); } }