분류 전체보기 1758

한국어 어휘량을 폭발적으로 증가시키는 앱에 관하여 (5) by 영웅 A to Z

모든 내용은 저에 의하여 작성되었습니다 제목에도 (5)이라는 표기가 있듯이 이 앱 전체를 보려면 이 제목 숫자 전체를 보아야 합니다 이는 블로그라는 한계 때문입니다 참고 부탁드립니다 package com.example.chimchak;/** * This class represents a KoreanKeyboard, a specialized version of the abstract Keyboard class. It is designed * specifically for inputting Hangeul, the Korean alphabet(or characters). The key feature of this class is its method for handling * key presses, transl..

호그와트 2024.06.27

한국어 어휘량을 폭발적으로 증가시키는 앱에 관하여 (4) by 영웅 A to Z

모든 내용은 저에 의하여 작성되었습니다 제목에도 (4)이라는 표기가 있듯이 이 앱 전체를 보려면 이 제목 숫자 전체를 보아야 합니다 이는 블로그라는 한계 때문입니다 참고 부탁드립니다 package com.example.chimchak;import javafx.application.Application;import javafx.geometry.Insets;import javafx.geometry.Pos;import javafx.scene.Scene;import javafx.scene.control.Button;import javafx.scene.control.Label;import javafx.scene.control.TextField;import javafx.scene.image.Image;import ..

호그와트 2024.06.26

한국어 어휘량을 폭발적으로 증가시키는 앱에 관하여 (3) by 영웅 A to Z

모든 내용은 저에 의하여 작성되었습니다 제목에도 (3)이라는 표기가 있듯이 이 앱 전체를 보려면 이 제목 숫자 전체를 보아야 합니다 이는 블로그라는 한계 때문입니다 참고 부탁드립니다  package com.example.chimchak;import org.apache.poi.ss.usermodel.*;import org.apache.poi.xssf.usermodel.XSSFWorkbook;import java.io.File;import java.io.FileInputStream;import java.util.*;/** * KoreanTextGame class is designed to be the core for the whole Korean learning vocabulary app, focusing ..

호그와트 2024.06.26

한국어 어휘량을 폭발적으로 증가시키는 앱에 관하여 (2) by 영웅 A to Z

모든 내용은 저에 의하여 작성되었습니다 제목에도 (2)이라는 표기가 있듯이 이 앱 전체를 보려면 이 제목 숫자 전체를 보아야 합니다 이는 블로그라는 한계 때문입니다 참고 부탁드립니다  package com.example.chimchak;import java.util.ArrayList;import java.util.Arrays;import java.util.Collections;import java.util.List;import java.util.Scanner;/** * The KoreanTestGame class is designed to evaluate a user's level about Korean words. * It is very simple answering English words game ..

호그와트 2024.06.25

한국어 어휘량을 폭발적으로 증가시키는 앱에 관하여 (1) by 영웅 A to Z

모든 내용은 저에 의하여 작성되었습니다  제목에도 (1)이라는 표기가 있듯이  이 앱 전체를 보려면 이 제목 숫자 전체를 보아야 합니다  이는 블로그라는 한계 때문입니다 참고 부탁드립니다  package com.example.chimchak;/** * An abstract class representing a generic keyboard. It provides a framework for handling key * presses and displaying the keyboard's status. * Special Characteristics: * - Abstract Class: This class is abstract and cannot be initiated on its own. It requires..

호그와트 2024.06.24