전체 글

개인 공부/자바스크립트 공부

[자바스크립트] 모던 자바스크립트 DeepDive 공부 #19-3

Chapter19-3 프로토타입 19.7 프로토타입 체인 function Person(name) { this.name = name; } // 프로토타입 메서드 Person.prototype.sayHello = function() { console.log(`Hi! My name is ${this.name}`); }; const me = new Person('Lee'); // hasOwnProperty는 Object.prototype의 메서드 console.log(me.hasOwnProperty('name')); // true 자바스크립트는 객체의 프로퍼티에 접근하려고 할 떄 해당 객체에 접근하려는 프로퍼티가 없다면 [[Prototype]] 내부 슬롯의 참조를 따라 자신의 부모 ..

개인 공부/JAVA

[JAVA] Code Up 기초 100제 (1097~ 1099)

# 1097 import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[][] arr = new int[19][19]; for (int i = 0; i < arr.length; i++) { for (int j = 0; j < arr.length; j++) { arr[i][j] = sc.nextInt(); } } int n = sc.nextInt(); int x, y; for (int i = 0; i < n; i++) { x = sc.nextInt(); for (int j = 0; j < arr.length; j++) { if (arr[x - 1][..

개인 공부/JAVA

[JAVA] Code Up 기초 100제 (1093~ 1096)

# 1093 import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] arr = new int[24]; for (int i = 0; i < n; i++) { int num = sc.nextInt(); arr[num - 1] += 1; } for (int i = 0; i < 23; i++) { System.out.print(arr[i] + " "); } } } # 1094 import java.util.*; public class Main { public static void main(String[] ar..

개인 공부/JAVA

[JAVA] Code Up 기초 100제 (1088 ~ 1092)

# 1088 import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for (int i = 0; i

개인 공부/나의 궁금증

[궁금증] 다국적 기업의 임원 직책명 정리

CEO (Chief Executive Officer) : 최고 경영자 - 기업의 최고 의사결정권자 CAO (Chief Administration Officer) : 최고 행정 관리자 - 회사 내 행정 관련 최고 결정권자 CCO (Chief Creative Officer) : 최고 크리에이티브 책임자 - 회사 내 크리에이티브 직무에서 최고 결정권자 CFO (Chief Financial Officer) : 최고 재무 관리자 - 회사 내 재무 관련 직무에서 최고 결정권자 CIO (Chief Information Officer) : 정보기술 최고 책임자 - 기업 내 정보 기술과 컴퓨터 시스템 부분 책임자 CKO (Chief Knowledge Officer) : 최고 지식경영 책임자 - 기업의 지식경영을 맡고 있..

개인 공부/JAVA

[JAVA] Code Up 기초 100제 (1083 ~ 1087)

# 1083 import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for (int i = 1; i = a) { System.out.println(sum); break; } } } } 코드업 기초 100제 문제집 / C언어 기초 100제 codeup.kr

내캉
주간비행