import javax.swing.JOptionPane;
public class AstroEmpiresCalculator
{
public static void main( String args[] )
{
int Fighters = 0;
int Bombers = 0;
int HeavyBombers = 0;
JOptionPane.showInputDialog( "Fighters",Fighters );
JOptionPane.showInputDialog( "Bombers",Bombers );
JOptionPane.showInputDialog( "Heavy Bombers",HeavyBombers );
}
} |