import javax.swing.JOptionPane; //imports swing class class Practice { public static void main (String [] args) { String response; //creates "respose" string response = JOptionPane.showInputDialog //assignment of response ("what is your first name?"); if (response == null) JOptionPane.showMessageDialog (null, "You clicked on the cancel button"); else if (response.equals("")) JOptionPane.showMessageDialog (null, "You must make an entry in the input box"); else JOptionPane.showMessageDialog (null," It's nice to meet you " + response); System.exit (0); } }// end of Practice
I always had a passion for the field of STEM (Science, Technology, Engineering, and Math) and I knew I wanted to do something to make a difference in the world. I just didn’t know where to start. I was an immigrant in a new country, grew up in a tough environment, and wasn’t sure how… Read More