일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 해시
- 자바스크립트
- Entity
- 자바문자열구분
- biginteger사용법
- national instruments
- 블록체인강의
- 혁신의기술2:신뢰의미래 블록체인을 만나다
- 2차원배열정렬
- 자바
- 자바입력받기
- 단국대학교 k-mooc
- 시스템프로그래밍
- K-MOOC 단국대학교 홍보단
- 블록체인
- 머신러닝
- 우선순위큐
- 블록체인 강의
- 티스토리챌린지
- html기초
- Node
- stringreader
- 딥러닝
- K-MOOC
- StringTokenizer
- 오블완
- CSS 기초
- TypeScript
- 디스크블록할당
- 컴파일시스템
- Today
- Total
목록개발 공부/코딩 문제풀이 (20)
열정 실천
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class beakjoon_1032 { public static void main (String args[]) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); StringBuilder sb = new StringBuilder(); String le = ""; String ne = ""; int st_len = 0; for (int i=0..

import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class beakjoon_1100{ public static void main (String args[]) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int count = 0; String a = ""; for (int i=0; i
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.BigInteger; public class baekjoon_1247 { public static void main (String args[]) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb = new StringBuilder(); BigInteger sum = new BigInteger("0"); BigInteger zero = new BigInteger("..

백준 제출할 때, 클래스 이름은 무조건 Main baekjoon_1085 → Main 으로 변경 이건 몰랐지!

import java.io.IOException; import java.util.Scanner; public class baekjoon_1085 { public static void main (String[] args) throws IOException { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int w = sc.nextInt(); int h = sc.nextInt(); //x,y,w-x,h-y중에 최솟값 구하기 int min = x; if(y
import java.io.IOException; import java.util.Scanner; public class Main { public static void main (String[] args) throws IOException { Scanner sc = new Scanner(System.in); int l = Integer.parseInt(sc.nextLine()); int a = Integer.parseInt(sc.nextLine()); int b = Integer.parseInt(sc.nextLine()); int c = Integer.parseInt(sc.nextLine()); int d = Integer.parseInt(sc.nextLine()); int max = 0; if(a%c==..