Coding Test/Baekjoon
[백준] 2588번 곱셈 (자바 java) 자릿수 값 구하기
import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int one = sc.nextInt(); int two = sc.nextInt(); int three = one * (two % 10); System.out.println(three); int four = (one * ((two % 100) / 10)) * 10; System.out.println(four/10); int five = one * (two / 100) * 100; System.out.println(five/100); System.out.println(three + four ..