decrementing the value

PHOTO EMBED

Sun Nov 06 2022 00:25:13 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

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

    int a = 5;
    int b = 2;

    double result = 5/2.0;

    int c = 4;

    System.out.println (c++);
  }
}
content_copyCOPY