I tired to compile the code below and could not get it to work, its right out of the text book. Could someone please help look at this and figure out what is wrong? Thanks a bunch.
Code:import javax.swing.JOptionPane; public class JOptionPaneDemo { public static void main(String[] args) { String appleString = JOptionPane.sowInputDialog("Enter number of apples:"); int appleCount = Integer.parseInt(appleString); String orangeString = JOptionPane.showInputDialog("Enter number of oranges:); int orangeCount = Integer.parseInt(orangeString); Int totalFruitCount = appleCount + orangeCount; JOptionPane.showMessageDialog(null,"The total number of fruits = " + totalFruitCount; System.exit(0); } }


LinkBack URL
About LinkBacks






Reply With Quote