본문 바로가기
Example 2018

제어문연습프로젝트 - switch문 main

by ZEROMI 2018. 4. 11.
728x90

package logic.run;


import logic.testswitch.SwitchSample;


public class SwitchRun {


public static void main(String[] args) {

// switch 문 연습

SwitchSample ssamp = new SwitchSample();

//ssamp.test1();

//ssamp.calculator();

ssamp.test2();

}


}



728x90