บทที่ 11 การใช้ if else if
class ifelseif {
public static void main(String[] args){
int x = 50;
if (x==50){
System.out.println("print joop");
}else if (x==60){
System.out.print("print joop 2");
}else if (x==70){
System.out.print("print joop 3");
}else{
System.out.print("hello java");
}
}
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น