/*εμφανίζει δυο παράθυρα διαδοχικά στα οποία πρέπει να βάλουμε έναν αριθμό και στη συνέχεια σε ένα τρίτο παράθυρο εμφανίζεται το αποτέλεσμα*/
import javax.swing.JOptionPane; //vivliothiki gia to gui
public class Main {
public static void main(String[] args) {
String n1 = JOptionPane.showInputDialog("Enter the first number");
/*apothikeuei auto pou eisagei o xristis sto parathiro se metavliti string*/
String n2 = JOptionPane.showInputDialog("Enter the second number");
float x = Float.parseFloat(n1); //μετατροπη του string n1 σε αριθμο
float y = Float.parseFloat(n2); //μετατροπή του string n2 σε αριθμο
float sum = x + y;
//emfanizoume to apotelesma sto parathiro
JOptionPane.showMessageDialog(null, "result: "+ sum, "result", JOptionPane.PLAIN_MESSAGE);
}
}
Δεν υπάρχουν σχόλια:
Δημοσίευση σχολίου