코딩은 체육과목 입니다 풀이
문제내용 사용자에게 4의 배수를 입력받아 4의 배수만큼 long을 적고 마지막에 int를 출력하는 문제이다. 풀이 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); int _byte = 4; int rstB = num/_byte; String result = ""; try { for(int i = 0; i < rstB; i++){ if(i==0){ result += "long"; }else { result += " long"; } } } catch (Exception e) {}finally{ ..
2023.06.12