정답
import java.util.Scanner;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a+b);
System.out.println(a-b);
System.out.println(a*b);
System.out.println(Math.round(a/b));
}
}
'Java > SWEA' 카테고리의 다른 글
[JAVA] SWEA 1936. 1대1 가위바위보 (0) | 2024.05.01 |
---|---|
[JAVA] SWEA 1933. 간단한 N의 약수 (0) | 2024.05.01 |
[JAVA] SWEA 2025. N줄덧셈 (0) | 2024.05.01 |
[JAVA] SWEA 2029. 몫과 나머지 출력하기 (0) | 2024.05.01 |
[JAVA] SWEA 2043. 서랍의 비밀번호 (0) | 2024.05.01 |