- 도메인 또는 조직 이름:
www.naver.com
- 상세:
CN=www.naver.com, O=NAVER Corp., C=KR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 제로베이스 35기 김현승 | |
-- 부서별 평균 급여와 순위 구하기 | |
SELECT | |
dept_no, | |
dept_salary, | |
RANK() OVER (ORDER BY dept_salary DESC) AS salaryRN | |
FROM ( | |
SELECT | |
de.dept_no, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*제로베이스 BE 35기 김현승*/ | |
import java.util.*; | |
import java.util.stream.Collectors; | |
public class StreamInputProcessor { | |
public static void main(String[] args) { | |
Scanner scanner = new Scanner(System.in); | |
System.out.print("숫자를 입력하세요 (공백 또는 쉼표로 구분): "); | |
String input = scanner.nextLine(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*제로베이스 BE 35기 김현승*/ | |
import java.lang.annotation.*; | |
@Retention(RetentionPolicy.RUNTIME) | |
@Target(ElementType.FIELD) | |
public @interface JsonField { | |
String value(); | |
boolean skipYn() default false; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*제로베이스 BE 35기 김현승*/ | |
import java.util.Scanner; | |
public class IncomeTaxCalculator { | |
// 과세 구간, 세율, 누진공제액 정의 | |
static int[] 기준소득 = { 12000000, 46000000, 88000000, 150000000, 300000000, 500000000, 1000000000 }; | |
static double[] 세율 = { 0.06, 0.15, 0.24, 0.35, 0.38, 0.40, 0.42, 0.45 }; | |
static int[] 누진공제 = { 0, 1080000, 5220000, 14900000, 19400000, 25400000, 35400000, 65400000 }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*제로베이스 BE 35기 김현승*/ | |
import java.util.*; | |
public class LottoChecker { | |
public static void main(String[] args) { | |
Scanner scanner = new Scanner(System.in); | |
Random random = new Random(); | |
System.out.println("[로또 당첨 프로그램]"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*제로베이스 BE 35기 김현승*/ | |
public class ElectionSimulator { | |
public static void main(String[] args) { | |
Scanner scanner = new Scanner(System.in); | |
Random random = new Random(); | |
System.out.print("총 진행할 투표수를 입력해 주세요: "); | |
int totalVotes = scanner.nextInt(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*제로베이스 BE 35기 김현승*/ | |
import java.util.Scanner; | |
public class AmusementParkTicket { | |
public static void main(String[] args) { | |
Scanner scanner = new Scanner(System.in); | |
System.out.println("[입장권 계산]"); |
NewerOlder