// HowMuch.java [CS 170 Homework 3 Starter file] // 1. Add your personal information here [who are you, // what class are you in, what does this program do?] // 2. Add your import statments here public class HowMuch extends Applet { // 3. Create your object attributes here public void init() { // This line simply arranges the components // Do NOT remove this line or put code before it setLayout(new GridLayout(0, 2, 5, 5)); // 4. "Talk" to your objects here // 5. Hook-up the Java event system } // Write a method to handle ActionEvents public void actionPerformed(ActionEvent ae) { // 6. Extract text from each text field // 7. Create numeric variables and convert text // 8. Make the necessary calculations // 9. Display the formatted results } }