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
| /* | |
| 김세훈 | |
| file 입력을 받아 알파벳의 개수와 전체 알파벳 개수에서 현재 알파벳의 비율 산출 코드 | |
| */ | |
| import java.io.IOException; | |
| import java.nio.file.Files; | |
| import java.nio.file.Path; | |
| import java.nio.file.Paths; | |
| import java.util.List; |
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
| import java.util.Scanner; | |
| public class UserSolution { | |
| public static void main(String[] args){ | |
| while(true){ | |
| System.out.println("<<<<[메뉴선택]>>>>"); | |
| String[] text = {"회원 관리", "과목 관리", "수강 관리", "결제 관리", "종료"}; | |
| for (int i = 1, j = 0; i <= 5; i++, j++){ | |
| System.out.println(i + ". " + text[j]); |
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
| import java.io.BufferedWriter; | |
| import java.io.File; | |
| import java.io.FileWriter; | |
| import java.io.IOException; | |
| public class Assignment_01 { | |
| public static void main(String[] args){ | |
| try{ | |
| File file = new File("property.html"); | |
| BufferedWriter writer = new BufferedWriter(new FileWriter(file)); |
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
| import java.io.BufferedReader; | |
| import java.io.InputStreamReader; | |
| import java.util.*; | |
| import java.io.IOException; | |
| public class Assignment_02 { | |
| static class Point{ | |
| int y; | |
| int x; | |
| long dist; |
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
| import java.io.*; | |
| import java.util.*; | |
| class Pager{ | |
| long totalCount; | |
| Pager(long totalCount){ | |
| this.totalCount = totalCount; | |
| } |
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
| {"lastUpload":"2025-10-31T05:26:16.273Z","extensionVersion":"v3.4.3"} |
OlderNewer