728x90
문제
두 개의 자연수를 입력받으면 그 두 수를 이용해 사칙연산(덧셈, 뺄셈, 곱셈, 나눗셈)을 한다.
- 입력: 두 개의 자연수
- 출력: 덧셈(+) 결과, 뺄셈(-) 결과, 곱셈(*) 결과, 나눗셈(/) 결과(몫만)
풀이
import java.util.Scanner;
import java.io.FileInputStream;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int a,b;
a = sc.nextInt();
b = sc.nextInt();
System.out.println(a+b);
System.out.println(a-b);
System.out.println(a*b);
System.out.println(a/b);
sc.close();
}
}
SMALL
'Programming > JAVA' 카테고리의 다른 글
[SWEA] 2027. 대각선 출력하기 (0) | 2021.03.03 |
---|---|
[SWEA] 1936. 1대1 가위바위보 (2) | 2021.02.23 |
[SWEA] 2058. 자릿수 더하기 (0) | 2021.02.15 |
[SWEA] 2046. 스탬프 찍기 (0) | 2021.02.14 |
[SWEA] 2047. 신문 헤드라인 (0) | 2021.02.13 |