Question
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
public class MyJApplet extends Applet implements Runnable{/**
* Initialization method that will be called after the applet is loaded into
* the browser.
*/
int x = 200;
int y = 200;
int shape_size = 40;
int width = 800;
int heigh = 400;
int x_addition = 1;
int y_addition = 1;
long start = System.nanoTime() ;
long end;
int speed = 200;
public void init() {
// TODO start asynchronous download of heavy resources
setSize(width, heigh);
setBackground(new Color(123, 47, 233));
try {
speed = Integer.parseInt(JOptionPane.showInputDialog("Enter the speed"));...