الجزء الاول بفصل فيه شوي
Why do you have to import JOptionPane but not the Math class?
بالنسبة لهذا السؤال.. لان الMath class في داخل هذه المجموعة java.lang package وهذه المجموعة تعتبر مرئية بدون import بعكس JOptionPane اللي لابد من استدعائها من قبل المستخدم بواسطة import.
الجواب بالانجليزي:
كود:
All classes in the java.lang package are visible without an import(by default).
How do you prompt the user to enter an input using a dialog box?
كود:
By using this line we can prompt the user to enter an input
باستخدام هذا الكود
String dataString = JOptionPane.showInputDialog( "Enter an int value: ");
How do you convert a string to an integer? How do you convert a string to a double?
كود:
1- int x = Integer.parseInt("1234");
2- String text = "12.34"; // example String
double value = Double.parseDouble(text);
بالنسبة لل int نستخدم parseInt
بالنسبة لل double نستخدم parseDouble