ให้เราใช้ตัวดำเนินการเชิงตรรกะกับสตริงใน Java -
ตัวอย่าง
import java.io.*;
public class Demo{
public static void main(String[] args){
int a = 45, b = 32, c = 87, d = 1;
System.out.println("The first variable is " + a);
System.out.println("The second variable is = " + b);
System.out.println("The third variable is = " + c);
if ((a > b) && (b == c)){
d = a + b + c;
System.out.println("The sum is " + d);
}
else
System.out.println("The conditions haven't been fulfilled");
}
} ผลลัพธ์
The first variable is 45 The second variable is = 32 The third variable is = 87 The conditions haven't been fulfilled
คลาสชื่อ Demo มีฟังก์ชันหลัก โดยจะมีการประกาศตัวแปร 4 ตัว และมีการใช้ตัวดำเนินการเชิงตรรกะต่างๆ โดยใช้ตัวแปรเหล่านี้ และจะมีการประกาศบนคอนโซล