본문 바로가기

[java]throws

반응형

메소드에서 예외가 발생하도록 만든다.

   

   

import java.util.Scanner;

   

public class ExcetTest4

{

  public static void method() throws Exception

  {

    Scanner input = new Scanner(System.in);

    int a, b, c;

      

    System.out.println("첫번쨰 정수를 입력하세요>>");

    a = input.nextInt();

    System.out.println("두번쨰 정수를 입력하세요>>");

    b = input.nextInt();

      

    c= a/b;

    System.out.println(a+"/"+b+"="+c);

    c= a*b;

    System.out.println(a+"*"+b+"="+c);

    c= a-b;

    System.out.println(a+"-"+b+"="+c);

    c= a+b;

    System.out.println(a+"+"+b+"="+c);

  }

    

  public static void main(String[] args)

  {

    try

    {

      method();

    }

      

    catch(Exception e)

    {

      System.out.println(e);

    }

    System.out.println("예외 처릴를 하였기에 정상 종료함");

      

    }

  }

   

   

   

   

   

   

반응형
-->