// This example is from the book _Java AWT Reference_ by John Zukowski. // Written by John Zukowski. Copyright (c) 1997 O'Reilly & Associates. // You may study, use, modify, and distribute this example for any purpose. // This example is provided WITHOUT WARRANTY either expressed or import java.awt.*; import java.applet.*; public class JavaCalc extends Applet { Label lab; boolean firstDigit = true; float savedValue = 0.0f; // Initial value String operator = "="; // Initial operator public void addButtons (Panel p, String labels) { int count = labels.length(); for (int i=0;i