วันพฤหัสบดีที่ 24 พฤษภาคม พ.ศ. 2555

บทที่ 6 การใช้ตัวดำเนินการ


public class ShotOper {
public static void main (String[] args) {
int x = 3;
++x;
--x;
// ++, --
//x++;
//x--;
System.out.println(x++);
System.out.println(x--);
System.out.println(x);
System.out.println(x+x);
}
}



/*  การใช้ตัวดำเนินการแบบ เพิ่มค่าขึ้นทีละหนึ่ง ก็ คือ x++,  x--

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

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