수업소개
여러까지 오시느라 고생 많으셨습니다. 지금까지 배운 것을 총정리하는 시간을 가져보겠습니다.
강의1
소스코드
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | public class AuthApp3 { public static void main(String[] args) { String[] users = { "egoing" , "jinhuck" , "youbin" }; String inputId = args[ 0 ]; boolean isLogined = false ; for ( int i= 0 ; i<users.length; i++) { String currentId = users[i]; if (currentId.equals(inputId)) { isLogined = true ; break ; } } System.out.println( "Hi," ); if (isLogined) { System.out.println( "Master!!" ); } else { System.out.println( "Who are you?" ); } } } |
강의2
소스코드
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | public class AuthApp3 { public static void main(String[] args) { //String[] users = {"egoing", "jinhuck", "youbin"}; String[][] users = { { "egoing" , "1111" }, { "jinhuck" , "2222" }, { "youbin" , "3333" } }; String inputId = args[ 0 ]; String inputPass = args[ 1 ]; boolean isLogined = false ; for ( int i= 0 ; i<users.length; i++) { String[] current = users[i]; if ( current[ 0 ].equals(inputId) && current[ 1 ].equals(inputPass) ) { isLogined = true ; break ; } } System.out.println( "Hi," ); if (isLogined) { System.out.println( "Master!!" ); } else { System.out.println( "Who are you?" ); } } } |
지식지도
관련된 지식의 지도입니다. 지도를 참고해서 스스로 학습 경로를 탐험해보세요.
수업소식
아래 채널에 구독하시면 새로운 온/오프라인 수업이 있을 때 알려드립니다.