L2.4: Strings - Comparing Strings vs Primitives (Comparing Primitives)

PHOTO EMBED

Tue Oct 17 2023 07:08:59 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

public class Main {
    public static void main(String[] args) {

        int a = 7;
        int b = 7;

        System.out.println(a == b);
    }
}
// Output: true
content_copyCOPY