วันศุกร์ที่ 25 พฤษภาคม พ.ศ. 2555

บทที่ 8 การใช้ if

if ?
if ก็คือ การเขียนโปรแกรมให้คิดเป็น ตัดสินใจเป็น  รู้ว่าอะไรควรทำ อะไรไม่ควรทำ

ตัวอย่าง

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

if (x == 4){
System.out.println("x==4 true");
}
System.out.println("hello");
}


}


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

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