This file contains 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.*; | |
class Pager{ | |
long totalCount; // 전체 게시글 수 | |
long NumPerPage = 10; // 한 페이지당 보여지는 게시글 수 | |
long blockLength = 10; // 페이지 네비게이션에서 보여주는 블럭 수 | |
Pager(long totalCount){ | |
this.totalCount = totalCount; | |
} |
This file contains 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.*; | |
import java.io.*; | |
public class Mission1Surprise2 { | |
public static void main(String[] args) throws IOException { | |
BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); | |
// 나의 좌표 값 입력받기 (공백으로 x값, y값 구분) | |
int[] myPlace = new int[2]; | |
StringTokenizer st = new StringTokenizer(br.readLine()); |
This file contains 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.*; | |
import java.io.*; | |
public class Mission1Surprise1 { | |
public static void main(String[] args) { | |
StringBuilder html = new StringBuilder(); | |
html.append("<head>\n"); | |
html.append(" <meta charset=\"UTF-8\"/>\n"); | |
html.append(" <style>\n"); | |
html.append(" table { border-collapse: collapse; width: 100%; }\n"); |
This file contains 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
/* | |
진용완 | |
제로베이스 백엔드 스쿨 15기 | |
*/ | |
import java.util.*; | |
class ExceptionNotIncome extends RuntimeException{} | |
class TaxYear { |
This file contains 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
/* | |
진용완 | |
제로베이스 백엔드 스쿨 15기 | |
*/ | |
import java.util.InputMismatchException; | |
import java.util.Scanner; | |
import java.util.*; | |
class ExceptionOutOfRange extends RuntimeException{} |
This file contains 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
/* | |
진용완 | |
제로베이스 백엔드 스쿨 15기 | |
*/ | |
import java.util.ArrayList; | |
import java.util.Scanner; | |
import java.util.Random; | |
import java.util.stream.*; |
This file contains 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
/* | |
진용완 | |
제로베이스 백엔드 스쿨 15기 | |
*/ | |
import java.time.*; | |
import java.util.InputMismatchException; | |
import java.util.Scanner; | |
This file contains 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
/* | |
진용완 | |
제로베이스 백엔드 스쿨 15기 | |
*/ | |
import java.util.ArrayList; | |
import java.util.InputMismatchException; | |
import java.util.*; | |
import java.util.Scanner; | |
import java.util.regex.Pattern; |
This file contains 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
/* | |
진용완 | |
제로베이스 백엔드 스쿨 15기 | |
*/ | |
import java.util.InputMismatchException; | |
import java.util.Scanner; | |
class ExceptionNotAge extends RuntimeException{} | |
class ExceptionNotTime extends RuntimeException{} |
This file contains 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
/* | |
진용완 | |
제로베이스 백엔드 스쿨 15기 | |
*/ | |
import java.util.Scanner; | |
public class Mini2Cashback { | |
public static void main(String[] args) { |
NewerOlder