계산식구현1 구름톤 챌린지 1주 Day3 - 합 계산기 합 계산기 (Java) 제출한 답 :package week1; import java.io.*; class day3 { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int t = Integer.parseInt(br.readLine()); int total = 0; for (int i = 0; i < t; i++) { String cal = br.readLine(); String[] value = cal.split(" "); int m = Integer.parseInt(value[0]); char four = value.. 2023. 8. 18. 이전 1 다음