IfElseTest.java
Dosyayı İndir
public class IfElseTest {
public static void main(String[] args) {
// if else kullanılıyor
if (true) {
System.out.println("true");
} else {
System.out.println("false");
}
// if,else if , else kullanımı.
int a = 0;
if (a > 5) {
System.out.println("a 5 ten büyük");
} else if (a == 5) {
System.out.println("a 5'e eşit");
} else {
System.out.println("a 5'ten küçük");
}
boolean b = true;
boolean c = false;
// ==,!=,!,&&,|| kullanılıyor.
if (b == true) {
System.out.println("a true");
}
if (b != true) {
System.out.println("b true değil");
}
if (!b) {
System.out.println("b true");
}
if (b && c) {
System.out.println("b ve c true");
}
if (b || c) {
System.out.println("b veya c true");
}
}
}
Dosyayı İndir