백준 2798번 블랙잭
·
알고리즘
package algorithm; import java.util.Scanner; public class algo_2798 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); int n = sc.nextInt(); //카드개수 int m = sc.nextInt(); // 계산 최대값 int[] arr = new int[n]; // 들어 가는 갯수를 배열에 넣어주고 for (int i = 0; i < n; i++) { arr[i] = sc.nextInt(); } // 그 수만큼 입력 받아 int result = 0; int temp = 0; for (int..
해니01_15
'백준2798' 태그의 글 목록