Skip to content

Instantly share code, notes, and snippets.

View Anz0728's full-sized avatar

Anz Anz0728

  • Joined Sep 12, 2025
View GitHub Profile
//백엔드 원근영
import java.util.List;
class FileDownloader implements Runnable {
private final String fileName;
// 생성자: 어떤 파일을 다운로드할지 파일 이름을 받습니다.
public FileDownloader(String fileName) {
this.fileName = fileName;
//백엔드 원근영
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
class UnderageException extends Exception{
public UnderageException(String message){
super(message);
//백엔드 원근영
import java.util.InputMismatchException;
import java.util.Scanner;
public class AtmHw {
public static void main(String[] args) {
int balance=10000;
// 백엔드 원근영
import java.util.*;
public class Listex {
public static void main(String[] args) {
HashMap<String, List<Integer>> students=new HashMap();
Scanner sc=new Scanner(System.in);
// 백엔드 원근영
import java.util.HashSet;
import java.util.Scanner;
public class Listex {
public static void main(String[] args) {
// 백엔드 원근영
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Scanner;
class Contact{
String name;
String phone;
// 백엔드 원근영
import java.io.*;
public class BufferedFileCopy {
private static final int BUFFER_SIZE = 8192;
public static void main(String[] args) {
File source = new File("test.txt");
// 백엔드 원근영
import java.util.Scanner;
public class JavaEx07 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("학생 정보를 입력하세요.");
// 백엔드 원근영
class InsufficientBalanceException extends RuntimeException {
public InsufficientBalanceException(String message) {
super(message);
}
}
// 백엔드 원근영
public class JavaEx07 {
public static void main(String[] args) {
String[][] words={
{"어제", "내일"},
{"나는", "동생은"},
{"여행을","학교에"},
{"다녀왔다", "갈 예정이다"}