관리 메뉴

IT창고

자바(JAVA) 실습 - 사칙연산계산기 본문

프로그래밍/JAVA

자바(JAVA) 실습 - 사칙연산계산기

방구석여포 2017. 8. 15. 13:45

조건

 

1. 첫 번째 숫자를 입력 합니다.

2. 사칙연산 기호 중 하나를 입력(*, /, -, +) 합니다.

3. 두 번째 숫자를 입력 합니다.

4. 입력한 연산 기호에 따른 결과값 도출

 

소스코드

 

import java.util.Scanner;

public class Main {

 public static void main(String[] args) {
  Scanner scan;
  scan = new Scanner(System.in);
  
  System.out.println("첫번째숫자하나입력");
  String input = scan.nextLine();
  
  
  System.out.println("*, /, -, +중 하나를 입력하세요");
  String input4 = scan.nextLine();
  
  System.out.println("두번째숫자하나입력");
  String input2 = scan.nextLine();
  
  int num = Integer.parseInt(input);
  int num2 = Integer.parseInt(input2);
  
  
  if(input4.equals("*")){
   int result = num * num2;
   System.out.println("두 수의 곱은"+result);
  }
  else if(input4.equals("/")){
   int result = num / num2;
   System.out.println("두 수의 나누기는"+result);
  }
  else if(input4.equals("-")){
   int result = num - num2;
   System.out.println("두 수의 빼기는"+result);
  }
  else if(input4.equals("+")){
   int result = num + num2;
   System.out.println("두 수의 합은"+result);
  }

 }

}

 

실행결과

 

Comments