/* File: ArithApp.java For Lab 4a, CMSC 220, Fall 1998, U. Wolz */ public class ArithApp { public static void main(String args[]) { Arithmetic a = new Arithmetic(); a.getDigits(); a.showResult(); } }