Write an applet that contains one button. Initialize the label on the button to “Start”. Toggle the button label between these two values each time the button is pressed.
import java.applet.Applet; import java.awt.Button; import java.awt.Color; import java.awt.Graphics; import java.awt.Graphics2D; import...