분류 전체보기177 백준) 2798 블랙잭 -JAVA https://www.acmicpc.net/problem/2798 2798번: 블랙잭 문제 카지노에서 제일 인기 있는 게임 블랙잭의 규칙은 상당히 쉽다. 카드의 합이 21을 넘지 않는 한도 내에서, 카드의 합을 최대한 크게 만드는 게임이다. 블랙잭은 카지노마다 다양한 규정이 �� www.acmicpc.net 1. 순서 상관없이 3수의 합 반복문을 구합니다. 2. 반복문 합계중 정답(목표수보다 작거나 같음)과 가장가까운 식을 정답값에 계속 기입합니다. package solution; import java.util.ArrayList; import java.util.Scanner; public class Bakjun_2798{ public static void main(String[] args) { Scann.. 2020. 7. 23. 프로그래머스)기능개발-java 1.각 요소별 소요날짜 배열 생성 2. 적은날짜가 나오기전까지 list에 담기 import java.util.ArrayList; class Solution { public int[] solution(int[] progresses, int[] speeds) { int[] cal = new int[progresses.length]; for(int i=0;i 2020. 7. 21. 프로그래머스-주식가격-Java Temp 배열을 활용하여 값 누적 class Solution { public int[] solution(int[] prices) { int[] answer = new int[prices.length]; int[] temp = new int[prices.length]; temp=prices; for(int i=0;i 2020. 7. 20. 프로그래머스)체육복-Java 조건에 맞게 단계별로 풀이 합니다 class Solution { public int solution(int n, int[] lost, int[] reserve) { int answer = n; int cnt=0; answer = n-lost.length; for(int i=0;i 2020. 7. 17. 윈도우 탐색기 바로열기 Window키+E 2020. 7. 16. 백준)10870 피보나치 수 5 - JAVA https://www.acmicpc.net/problem/10870 10870번: 피보나치 수 5 피보나치 수는 0과 1로 시작한다. 0번째 피보나치 수는 0이고, 1번째 피보나치 수는 1이다. 그 다음 2번째 부터는 바로 앞 두 피보나치 수의 합이 된다. 이를 식으로 써보면 Fn = Fn-1 + Fn-2 (n>=2)가 �� www.acmicpc.net 피보나치 수열의 규칙을 찾아 입력하면 됩니다. package solution; import java.util.Scanner; public class Bakjun_10870 { public static int Fibonacci(int n){ if(n==0) { return 0; } if(n==1) { return 1; } return Fibonacci(n-.. 2020. 7. 11. 이전 1 2 3 4 5 6 7 ··· 30 다음