L1.5: Math Operators - Decrement value

PHOTO EMBED

Thu Oct 19 2023 02:52:43 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

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

    int c = 4;

    System.out.println (--c);
  }
}
// Output: 3
content_copyCOPY