fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3.  
  4. /* Name of the class has to be "Main" only if the class is public. */
  5. class Ideone
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. int result = 37 % 20 % 3 * 4;
  10. System.out.println(result);
  11. }
  12. }
Success #stdin #stdout 0.06s 32344KB
stdin
Standard input is empty
stdout
8