fork download
  1. class Test {
  2.  
  3. public static void main (String[] args) {
  4.  
  5. final int a = 1;
  6.  
  7. System.out.print(++a);
  8.  
  9. System.out.println(a++);
  10.  
  11. } }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:7: error: cannot assign a value to final variable a
System.out.print(++a);
                   ^
Main.java:9: error: cannot assign a value to final variable a
System.out.println(a++);
                   ^
2 errors
stdout
Standard output is empty