입력과 출력
![[Java Study] 입력과 출력](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FWdNDe%2FbtrFGSIUwLM%2FsCNLCbALAsEKJfmic0moK1%2Fimg.png)
[Java Study] 입력과 출력
import org.opentutorials.iot.DimmingLights; import org.opentutorials.iot.Elevator; import org.opentutorials.iot.Lighting; import org.opentutorials.iot.Security; import javax.swing.*; public class OkJavaGoingHomeInput { public static void main(String[] args){ String id = JOptionPane.showInputDialog("Enter a ID"); String bright = JOptionPane.showInputDialog("Enter a Bright level"); // Elevator cal..