วันอาทิตย์ที่ 27 พฤษภาคม พ.ศ. 2555

บที่ 12 การใช้ switch


class Switch {
public static void main(String[] args){
int x = 30;

switch (x) {
case 20 :
System.out.println("condition 1");
break;
case 30 :
System.out.println("condition 2");
break;
case 40 :
System.out.println("condition 3");
break;
default :
System.out.println("con1,con2,con3,");
}
}


}





ไม่มีความคิดเห็น:

แสดงความคิดเห็น