728x90
반응형
- [프로그래머스 코딩테스트] MySQL Lv.1 특정 형질을 갖는 대장균 찾기chantlemanselect count(ID) as COUNT from ECOLI_DATA where (GENOTYPE & 2)!=2 AND ((GENOTYPE & 4)=4 OR (GENOTYPE & 1)=1); 너무 어려웠다. XOR를 사용해야 하나? 이진수로 바꿔야 하나? 고민하다가 결국 비트 연산자 이용해서 풀었다
- 2024-06-26 14:55:54
- [프로그래머스 코딩테스트] java Lv.0 출력 (PCCE 기출 문제 1번)chantlemanimport java.util.Scanner;public class Solution { public static void main(String[] args) { String msg = "Spring is beginning"; int val1 = 3; String val2 = "3"; System.out.println(msg); System.out.println(val1 + 10); System.out.println(val2 + "10"); }}
- 2024-06-26 14:52:47
- [프로그래머스 코딩테스트] java Lv.0 피타고라스 정리 (PCCE 기출 문제 2번)chantlemanimport java.util.Scanner;public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int c = sc.nextInt(); int b_square = c*c - a*a; System.out.println(b_square); }}
- 2024-06-26 14:50:50
- [프로그래머스 코딩테스트] java Lv.0 나이 계산 (PCCE 기출 문제 3번)chantlemanimport java.util.Scanner;public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int year = sc.nextInt(); String age_type = sc.next(); int answer = 0; if (age_type.equals("Korea")) { answer = 2030-year+1; } else if (age_type.equals("Year")) { answer=2030-year; } S..
- 2024-06-26 14:49:30
- [프로그래머스 코딩테스트] java Lv.0 저축 (PCCE 기출 문제 4번)chantlemanimport java.util.Scanner;public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int start = sc.nextInt(); int before = sc.nextInt(); int after = sc.nextInt(); int money = start; int month = 1; while (money
- 2024-06-26 14:48:03
- [프로그래머스 코딩테스트] java Lv.0 산책 (PCCE 기출문제 5번)chantlemanclass Solution { public int[] solution(String route) { int east = 0; int north = 0; int[] answer = new int [2]; for(int i=0; i
- 2024-06-26 14:46:35
- [프로그래머스 코딩테스트] java Lv.0 가채점 (PCCE 기출문제 6번)chantlemanclass Solution { public String[] solution(int[] numbers, int[] our_score, int[] score_list) { int num_student = numbers.length; String[] answer = new String[num_student]; for (int i = 0; i
- 2024-06-26 14:44:15
- [프로그래머스 코딩테스트] java Lv.0 가습기(PCCE 기출문제 7번)chantleman#include #include using namespace std;int func1(int humidity, int val_set){ if(humidity = 50) return 0; else if (humidity >= 40) return 1; else if (humidity >= 30) return 2; else if (humidity >= 20) return 3; else if (humidity >= 10) return 4; else return 5;}int func3(int humidity, int val_set){ if(humidity
- 2024-06-26 14:41:40
728x90
반응형
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)