JAVA-BAEKJOON (38) 썸네일형 리스트형 [백준/03-10] 2439 별 찍기 - 2 NO.2439 풀이코드 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i=1; i [백준/03-09] 2438 별 찍기 - 1 NO.2438 풀이코드 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); sc.close(); for(int i=0; i [백준/03-08] 11022 A+B - 8 NO.11022 풀이코드 import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for(int i=1; i [백준/03-07] 11021 A+B - 7 NO.11021 풀이코드 import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for(int i=1; i [백준/03-06] 15552 빠른 A+B NO.15552 풀이코드 import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.IOException; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter.. [백준/03-05] 25314 코딩은 체육과목 입니다 NO.25314 풀이코드 import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sc.close(); if(n%4==0){ for(int i=0; i [백준/03-04] 25304 영수증 NO.25304 풀이코드 import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int n = sc.nextInt(); int total = 0; for(int i=0; i [백준/03-03] 8393 합 NO.8393 풀이코드 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int sum = 0; sc.close(); for(int i=1; i 이전 1 2 3 4 5 다음