CS1 Standard Demo Page

The following text was written to the standard output stream when the /* * Traditional starter program package greetings; import javax.swing.JOptionPane; public class HelloYou { public static void main(String[] args) { String name = JOptionPane.showInputDialog(null, "who are you?"); System.out.println("Hello, " + name + "!"); } } } program was executed from IntelliJ.


Hello, corey!