This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by mindwing on 2015-12-12. | |
*/ | |
public class Singleton { | |
private static Singleton instance = new Singleton(); | |
private Singleton() { | |
} | |
public static Singleton getInstance() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by mindwing on 2015-12-08. | |
*/ | |
class SinsaApt2 { | |
int floorCount; | |
int parkingLotCount1; | |
int parkingLotCount2; | |
int evelatorCount; | |
int getTotalParkingLotCount() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Fast Campus 안드로이드 앱 개발 입문 캠프 | |
* Java for Android (by mindwing) | |
* [3일차] 강의노트 - 배열, 메서드 정의와 호출방법, I/O | |
* 도전과제3 - 커맨드 라인 인자길이의 밑변을 가지는 직각삼각형 모양 출력 | |
*/ | |
public class D3_Challenge_3_1 { | |
public static void main(String[] args) { | |
if (args.length == 0) { | |
System.out.println("직각삼각형 밑변의 길이를 정해주세요."); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Fast Campus 안드로이드 앱 개발 입문 캠프 | |
* Java for Android (by mindwing) | |
* [3일차] 강의노트 - 배열, 메서드 정의와 호출방법, I/O | |
* 도전과제3 - 커맨드 라인 인자길이의 밑변을 가지는 직각삼각형 모양 출력 | |
*/ | |
public class D3_Challenge_3_2 { | |
public static void main(String[] args) { | |
if (args.length == 0) { | |
System.out.println("직각삼각형 밑변의 길이를 정해주세요."); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Fast Campus 안드로이드 앱 개발 입문 캠프 | |
* Java for Android (by mindwing) | |
* [3일차] 강의노트 - 배열, 메서드 정의와 호출방법, I/O | |
* 도전과제3 - 커맨드 라인 인자길이의 밑변을 가지는 직각삼각형 모양 출력 | |
*/ | |
public class D3_Challenge_3_1 { | |
public static void main(String[] args) { | |
if (args.length == 0) { | |
System.out.println("직각삼각형 밑변의 길이를 정해주세요."); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Fast Campus 안드로이드 앱 개발 입문 | |
* Java for Android (by mindwing) | |
* [1일차] 강의노트 - 변수, 연산자, 선택문, 반복문 | |
* 필수 예제1 | |
*/ | |
public class D1_HelloWorld { | |
public static void main(String[] args) { | |
System.out.println("_____"); | |
} |
NewerOlder