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; | |
| /* | |
| 심지용 | |
| 추가 과제3. "페이징 처리" | |
| */ | |
| public class AdditionalAssignment03 { |
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.HashSet; | |
| import java.util.Scanner; | |
| import java.util.Set; | |
| /* | |
| 심지용 | |
| 추가 과제2번. "임이의 좌표값 입력 받고 최단거리의 좌표값구하기" | |
| */ | |
| public class AdditionalAssignment02 { |
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; | |
| /* | |
| 심지용 | |
| 추가 과제 1번. "자바의 환경 정보를 html의 테이블 구조로 출력후 조건에 맞게 property.html 파일을 만드는 코드를 작성" | |
| */ |
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
| /* | |
| 심지용 | |
| 과제 8. "연소득 과세금액 계산 프로그램" | |
| */ | |
| import java.util.ArrayList; | |
| import java.util.Scanner; | |
| public class AnnualIncomeTax { |
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
| /* | |
| 심지용 | |
| 과제 .7 "로또 당첨 프로그램" | |
| */ | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.Scanner; |
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
| /* | |
| 심지용 | |
| 과제 6. "가상 대선 당선 시뮬레이션 프로그램" | |
| */ | |
| import java.util.*; | |
| public class PresidentialElection { | |
| public static void virtualSimulation() { |
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
| /* | |
| 심지용 | |
| 과제 5. "달력 출력 프로그램" | |
| */ | |
| import java.time.LocalDate; | |
| import java.util.Scanner; | |
| public class Calendar { |
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
| /* | |
| 심지용 | |
| 과제 4. "주민등록번호 생성 프로그램" | |
| */ | |
| import java.util.Random; | |
| import java.util.Scanner; | |
| public class ResidentRegistrationNumber { | |
| public static void createNumber(){ |
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
| /* | |
| 심지용 | |
| 과제 3. "놀이동산 입장권 계산 프로그램" | |
| */ | |
| import java.util.Scanner; | |
| public class AmusementPark { | |
| public static void AdmissionTicket() { |
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
| /* | |
| 심지용 | |
| 과제 2. "결제 금액 캐시백 계산 프로그램" | |
| */ | |
| import java.util.Scanner; | |
| public class PaymentCashBack { | |
| public static void cashBack(){ |
NewerOlder