본문 바로가기

Portpolio267

크롬 브라우저 콘솔창 붙여넣기 입력 오류 날때 > 창에allow pasting입력 후 엔터하면 성공 2025. 2. 10.
이클립스 오류 해결: Java compiler level does not match the version of the installed Java project facet. 이 오류는 이클립스에서 자바 라이브러리와 컴파일러의 버전이 미스매치가 되서 발생하는 오류입니다. 2025. 2. 6.
이클립스 jsp, html 스니펫 추가해서 자주 쓰는 구문 자동화 jsp나 html에서 개발을 하다보면 중복되는 부분들을 자주 입력하는 경우가 왕왕 발생합니다. 가령 특정 폰트를 지정하고 싶어서 태그나 style 태그에서 font의 이름을 지정하고 싶은데 매번 하자니 이것이 쉽지 않습니다. 이러한 경우에 스니펫을 사용합니다. 우선 이클립스에서 스니펫을 사용하기 위해서는 상단 바에서 windows 창을 들어가서 그 아래에서 preference 메뉴를 클릭합시다. 클릭을 하면 이런 화면이 나오는데 아래의 그림처럼 상단 좌측에 snip 정도로만 입력을 해줍시다. 그러면 아래에 많은 항목들이 있지만     1. html 스니펫을 만들거면 => HTML Files > Editor > Templates2. jsp 스니펫을 만들거면 => JSP Files > Editor > Te.. 2025. 2. 4.
프로그래머스 삼각형의 완성조건(1) 풀이 https://school.programmers.co.kr/learn/courses/30/lessons/120889  import java.util.Arrays; class Solution {     public int solution(int[] sides) {         int result = 0;         Arrays.sort(sides);                  if(sides[0]+sides[1]>sides[2])             result = 1;         else             result = 2;         return result;     } } 2025. 2. 3.
프로그래머스 9로 나눈 나머지 https://school.programmers.co.kr/learn/courses/30/lessons/181914 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 자바class Solution { public int solution(String number) { int sum = 0; for (char ch: number.toCharArray()) { sum += Character.getNumericValue(ch); } return sum % 9; }} 자바에서는 Character 패키지의 스.. 2025. 2. 3.
프로그래머스 마지막 두 원소 구하기 https://school.programmers.co.kr/learn/courses/30/lessons/181927 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 자바class Solution { public int[] solution(int[] num_list) { int l = num_list.length; //원래 배열보다 한 개 더 큰 배열 선언 int[] answer = new int[l+1]; //기본 배열만큼 복제 for(int i=0; ianswer[l-2]) answer[.. 2025. 2. 3.
프로그래머스 옷가게 할인 받기 풀이 https://school.programmers.co.kr/learn/courses/30/lessons/120818 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr자바class Solution { public int solution(int price) { int answer = 0; if (price  자바스크립트function solution(price) { var answer = 0; if (price자바스크립트는 부동소수점 이슈가 존재하므로 위의 문제에서 소수점을 버려내는 과정이 필요합니다. 2025. 2. 3.
프로그래머스 세균 증식 풀이 https://school.programmers.co.kr/learn/courses/30/lessons/120910 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr파이썬def solution(n, t): return n*(2**t) 자바class Solution { public int solution(int n, int t) { int answer = 0; answer = n * (int)(Math.pow(2,t)); return answer; }} 자바스크립트function solution(n, t) { var answer = 0; ans.. 2025. 2. 2.
프로그래머스 몫 구하기 https://school.programmers.co.kr/learn/courses/30/lessons/120805 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr자바로 구하기class Solution { public int solution(int num1, int num2) { int answer = 0; answer = num1 / num2; return answer; }} 자바스크립트로 구하기function solution(num1, num2) { var answer = 0; answer = Math.floor(num1 / num2); .. 2025. 2. 2.
프로그래머스 닉네임규칙 풀이 https://school.programmers.co.kr/learn/courses/30/lessons/340200 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.krclass Solution { public String solution(String nickname) { String answer = ""; for(int i=0; i 8){ answer = answer.substring(0, 8); } return answer; }} 2025. 2. 2.