Menu



Manage

Cord > Study_JAVA 전체 다운로드
파일 목록
Study_JAVA > 4/SwitchStringEx.java Lines 17 | 282 바이트
다운로드

                        package week4;

public class SwitchStringEx {
	public static void main(String[] args) {
		String mobile = "iPhon";
		
		switch(mobile) {
		case "iPhone":
			System.out.println("Apple");
			break;
		case "Galaxy":
			System.out.println("SAMSUNG");
			break;
		}
	}
}