L3.2: Logical Expressions: Comparison operators - Less than

PHOTO EMBED

Fri Sep 29 2023 12:15:32 GMT+0000 (Coordinated Universal Time)

Saved by @TestProSupport

public class Main {

    public static void main(String[] args) {
        int a = 5;
        int b = 10;
        boolean lessThan = a < b;
        System.out.println("a < b is " + lessThan); 
    }
}
content_copyCOPY