fork download
  1.  
  2. public class Main {
  3.  
  4.  
  5. // -8 разделить на -4
  6. // остаток от деления 100 на 3
  7. // сумму двух предыдущих операций
  8.  
  9.  
  10. public static void main (String[] args) {
  11.  
  12. System.out.println(-8 / -4);
  13. System.out.println(100 % 3);
  14. System.out.println(2 + 1);
  15. }
  16. }
  17.  
Success #stdin #stdout 0.08s 52588KB
stdin
Standard input is empty
stdout
2
1
3