๋ฐ์ํ
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int firstInput = scanner.nextInt();
int secondInput = scanner.nextInt();
scanner.close();
System.out.printf("%d\n", firstInput + secondInput);
System.out.printf("%d\n", firstInput - secondInput);
System.out.printf("%d\n", firstInput * secondInput);
System.out.printf("%d\n", firstInput / secondInput);
System.out.printf("%d\n", firstInput % secondInput);
}
}
๋ฐ์ํ
'๐ธ Algorithm > ๐ธ ๋ฐฑ์ค BaekJoon' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค][java][10430][๋๋จธ์ง] (0) | 2023.08.27 |
---|---|
[๋ฐฑ์ค][java][18108][1998๋ ์์ธ ๋ด๊ฐ ํ๊ตญ์์๋ 2541๋ ์?!] (0) | 2023.08.27 |
[๋ฐฑ์ค][java][1008][A/B] (0) | 2023.08.20 |
[๋ฐฑ์ค][java][10998][AรB] (0) | 2023.08.20 |
[๋ฐฑ์ค][java][1001][A-B] (0) | 2023.08.15 |