fork download
  1. public class Main {
  2. public static void main(String[] args) {
  3. try {
  4. int a = 3 / 0;
  5. } catch (ArithmeticException e) {
  6. System.out.print("Super, programul inca merge!");
  7. }
  8. }
  9. }
  10.  
Success #stdin #stdout 0.09s 54624KB
stdin
Standard input is empty
stdout
Super, programul inca merge!