Skip to content

Instantly share code, notes, and snippets.

@up1
Last active August 29, 2015 14:15
Show Gist options
  • Save up1/23b3cda02482eb1d3c2b to your computer and use it in GitHub Desktop.
Save up1/23b3cda02482eb1d3c2b to your computer and use it in GitHub Desktop.
If-Else
if (x < 0) {
throw new Exception("ข้อมูลไม่สามารถติดลบได้นะ");
} else {
System.out.println("แจ่ม ทำงานได้");
}
if (x < 0) {
System.out.println("ค่าน้อยกว่าศูนย์");
} else {
System.out.println("แจ่ม ทำงานได้");
}
if (x < 0) {
throw new Exception("ข้อมูลไม่สามารถติดลบได้นะ");
}
System.out.println("แจ่ม ทำงานได้");
if (x < 0) {
throw new Exception("ข้อมูลไม่สามารถติดลบได้นะ");
exit();
}
for(int x : numbers){
if (x < 0) {
continue;
}
System.out.println("แจ่ม ทำงานได้");
}
for(int x : numbers){
if (x >= 0) {
System.out.println("แจ่ม ทำงานได้");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment