// Programmet läser in utgångshastighet och kastvinkel, samt skriver ut banhöjd och kastlängd public class Kast3 { public static void main (String[] arg) { while (true) { Model model = new Model(); JOptionPaneView view = new JOptionPaneView(model); JOptionPaneController controller = new JOptionPaneController(model, view); } } //main } //Kast3