백준10869: 사칙연산
문제
https://www.acmicpc.net/problem/10869
문제 풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.util.*;
public class Main{
public static void main(String args[]){
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);
System.out.println(a%b);
}
}
댓글남기기