[백준>단계별로 풀어보기>입출력과 사칙연산>곱셈] JAVA 풀이
public class Main { public static void main(String[] args) { java.util.Scanner sc = new java.util.Scanner(System.in); String fstStr = sc.nextLine(); String secStr = sc.nextLine(); int totalValue = 0; // 마지막 총 합 String intFormatTotal = "1"; // for(int i =0; i < secStr.length(); i++) { // 385 int splitIntBottom = Integer.parseInt(secStr.split("")[(secStr.length()-1) - i]); // int sumValue = 0; // ..
PROGRAMMING/백준알고리즘
2020. 1. 23. 09:52