본문 바로가기

복습5

[HTML & CSS] 간단한 화면 만들기 HTML 삽입 미리보기할 수 없는 소스 위의 코드 YVES KLEIN LE MONOCHROME GALERIE RIVE DROITE EXPOSITION JUSTQU'AU 13 NOV 1960 2023. 8. 15.
[자바 기초] 상속 활용하기 복습 https://shins99.tistory.com/32 [JAVA] 상속 복습 https://shins99.tistory.com/25 [자바 기초] 배열 복습 https://shins99.tistory.com/23 [자바 기초] static 복습 https://shins99.tistory.com/21 [자바 기초] C R U D 의 개념 복습 https://shins99.tistory.com/20 [자바 기초] this shins99.tistory.com 💡 학습 목표 배웠던 내용 활용해보기 1. 상속 활용하기 2. 메서드 오버로딩에 활용 3. 오버라이드 활용 public class Unit { protected String name; protected int power; protected int .. 2023. 8. 8.
[자바 기초] 책 스토어 프로그램 만들어보기 C R U D 💡 배웠던 부분을 활용해서 CRUD 기능을 구현하는 프로그램을 만들어 보자. 1. 배열 활용 2. Scanner 활용 3. static 메서드 활용 4. 다른 패키지에 존재하는 Book 클래스 활용 5. 접근 제어 지시자 6. 객체와 객체간에 상호 작용 코드 작성 package com.tenco.books; import java.util.Scanner; import ch09.Book; /** * @author 홍길동 * 책을 관리하는 프로그램 * C R U D 기능을 구현해 보자. */ public class TencoBooks { public static void main(String[] args) { // 준비물 Scanner sc = new Scanner(System.in); Book[] books.. 2023. 8. 4.
[HTML] 입력 양식과 태그를 활용해서 간단한 예제 만들기 글쓰기 게시판 화면 만들어보기 자료 2023. 8. 3.
[자바 기초] 조건문 & 반복문 복습해보기 복습 https://shins99.tistory.com/7 https://shins99.tistory.com/8 [자바 기초] if 문 복습 https://shins99.tistory.com/6 [자바 기초] 연산자 복습 https://shins99.tistory.com/4 항과 연산자 항(operand) : 연산에 사용되는 값 연산자 (operator) : 항을 이용하여 연산하는 기호 대입 연산자 (assignment opera shins99.tistory.com [자바 기초] for, while 복습 https://shins99.tistory.com/7 [자바 기초] if 문 복습 https://shins99.tistory.com/6 💡 학습 목표 1. if문 단독 2. if else 구문 3. if.. 2023. 7. 30.