https://pastebin.com/sfbuvx6m full code
Sometimes it works (Input between 1-17)
What di i mean with sometimes?
It is random if it will show the output or not. (same input)
public static void main(String[] args) {
JFrame frame = new JFrame("Widerstand");
frame.setSize(1000, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel currentPanel = new JPanel();
frame.add(currentPanel);
while(true)
{
frame.remove(currentPanel);
int select = Integer.parseInt(JOptionPane.showInputDialog("Which Version?"));
Anordnung anordnung = Anordnung.values()[select];
currentPanel = new Darsteller(anordnung, "100", "200", "300", "400");
frame.add(currentPanel);
frame.revalidate();
frame.repaint();
frame.setVisible(true);
}
}
Pastebin
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.