곱셈1 [백준 2588] 곱셈 (java) 문제 링크 https://www.acmicpc.net/problem/2588 2588번: 곱셈 첫째 줄부터 넷째 줄까지 차례대로 (3), (4), (5), (6)에 들어갈 값을 출력한다. www.acmicpc.net 나의 코드 (java) import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int A,B; A = sc.nextInt(); B = sc.nextInt(); int first = B%10; int second = (B%100 - first) / 10; int third = B/100; System.out.println(A * f.. 2021. 6. 28. 이전 1 다음