fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int x, y, z;
  8. x = 30;
  9. y = 0;
  10. try{
  11. z = 30 / y;
  12. Console.WriteLine(z);
  13. }
  14. catch (Exception e) {
  15. Console.WriteLine("例外派生!");
  16. Console.WriteLine(e.Message);
  17. }
  18. }
  19. }
Success #stdin #stdout 0.02s 14664KB
stdin
Standard input is empty
stdout
例外派生!
Attempted to divide by zero.