fork download
  1. /* Name of the class has to be "Main" only if the class is public. */
  2. class Main {
  3. public static void main (String[] args) {
  4.  
  5. long x = 12333455678898L; // initialization
  6. double y = 3.14;
  7. boolean z = true;
  8. char symbol = '@';
  9.  
  10. System.out.println(symbol);
  11. }
  12. }
Success #stdin #stdout 0.1s 54688KB
stdin
Standard input is empty
stdout
@