전체 글

https://discourse.ubuntu.com/t/noble-numbat-release-notes/39890
📍 24.05.02(목)  ~ 24.05.03(금)   : HTML, tag, 단락, 글자 관련 태그, 블록태그&인라인태그, 단어 설명 관련 태그, 수평선(구분선), 제목 요소, 미리 서식 정의된 텍스트 요소, 목록 태그📍 24.05.07(화) ~ https://velog.io/@juyeonma9/HTML-%EC%A0%95%EB%A6%AC🎀 현재 내 환경WindowVs code{ "langko html form": { "scope": "html", "prefix": "lko", "body": [ "", "", "", "\n", "\t$2", "", "" ], "description": "lang korean 자..
Language/JAVA
https://print-blue.tistory.com/170classMainItemfield - id : int- itemName : String- price : Integer- quantity : intmethod+ main(args: String[]) : void+ Item (id : int, itemName : String,            price : Integer, quantity : int)+ showInfo() : void설명- 사용자에게 메뉴 1 ~7의 정수 중 1개를 입력 받음- 정수 7를 입력하지 않은 한, 계속 반본적으로 실행- 생성자  class ItemBusinessRuleItemViewfield- store : Item[100] {read only}- sequence : ..
📍 24.04.23(금) : UI 설계📍 24.04.29(월) ~ 24.05.02(목)📍 24.04.26(금) 23일차UX : 기획UI : 디자이너사용자가 사이트를 접속했을 때 느낀 것이 UX 부분 https://modulabs.co.kr/blog/uxui-design/ UX/UI 디자인 정의, 특징, 차이점 완벽하게 파악해봅시다UX/UI의 정의와 특징, 차이점, 좋은 UX 디자인을 위한 3가지 원칙에 대해 알아봅니다.modulabs.co.kr 사이트를 사용하는 사용자들을 구체적으로 타겟화 해야 된다ex) 요리 - 1인 - 초보자 - 20~40대 UI 디자인 문서상세 문서가 필요한 이유 : 이해 관계자(협업자) 간의 커뮤니케이션 도구 디자인 가이드라인 작성법(기획서)사..
See the Pen Untitled by 진혜정 (@pbmpolyw-the-reactor) on CodePen." data-ke-type="html">HTML 삽입미리보기할 수 없는 소스
Language/JAVA
package exception;import java.util.Scanner;public class Ex03 { public static void inputData() throws Exception { System.out.println("[inputData method] ==> 시작"); Scanner input = new Scanner(System.in); System.out.print("정수 2개 입력 : "); int n1 = input.nextInt(); int n2 = input.nextInt(); int result1 = 0; int result2 = 0; result1 = n1 / n2; result2 = n1 % n2; System.out.println(..
Language/JAVA
https://print-blue.tistory.com/169 JAVA 간단한 프로그램 - 동물병원 프로그램 ver1.1https://print-blue.tistory.com/166 JAVA 간단한 프로그램 - 동물병원 프로그램 ver11. 필드 설정field 을 넣어준 것과 main () 메소드에서 객체 생성해서 사용하는 것과 차이가 있는데 (실행은 됨)메모리에 미print-blue.tistory.comhttps://print-blue.tistory.com/167 JAVA 간단한 프로그램 - 동물병원 프로그램 ver2https://print-blue.tistory.com/166 JAVA 간단한 프로그램 - 동물병원 프로그램 ver11. 필드 설정field 을 넣어준 것과 main () 메소드에서 객체 ..
Language/JAVA
https://print-blue.tistory.com/166 JAVA 간단한 프로그램 - 동물병원 프로그램 ver11. 필드 설정field 을 넣어준 것과 main () 메소드에서 객체 생성해서 사용하는 것과 차이가 있는데 (실행은 됨)메모리에 미리 할당해서 사용하기 위해서 field 로 설정한 것, main() 메소드에서 실행되print-blue.tistory.com 이전 프로젝트에서 문제점이 있는데 아래 2가지를 추가할 것 !1) Scanner 인스턴스 1개만 생성 2) AnimalBook class     main method 내 if 문 -> switch문 으로 변경  1) Scanner 인스턴스 1개만 생성메소드 실행될 때마다 Scanner 객체를 생성하고, 사용했는데 객체가 생성되면서 다른 ..
print(blue)