/*********************************** This is a short variable example ************************************/ import javax.swing.JOptionPane; import java.util.Scanner; public class Example011_6_1 { /* * The heart of the HelloWorld class. */ public static void main(String[] args) { System.out.println("Hello World!"); BeachBall ball = new BeachBall(); // DISCUSS NEXT TIME ball.setRadiusCm(20.0); ball.getPercentInflated(); ball.radiusCm = 5.0; // Put picture here Scanner in = new Scanner(System.in); int x = in.nextInt(); } }