일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JavaScript
- React
- 한빛아카데미
- Node.js
- html
- ScrollToPlugin
- gsap
- 스크롤
- 백준
- 라이브러리
- 자바스크립트
- prettier-code formatter
- 연습문제
- 이벤트
- 네트워킹
- 초연결사회의 데이터통신과 네트워킹
- 단어장
- ArrayList
- JLPT
- 초연결 사회의 데이터통신과 네트워킹
- 자바
- quizlet
- 일본어
- java
- reactjs code snippets
- Algorithm
- scrolly
- 데이터통신
- 알고리즘
- 함수
- Today
- Total
목록java (99)
umilove98의 블로그
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(bf.readLine()); int a = (int) (n*0.78); int b = (int) (n*0.8 + (n*0.2)*0.78); System.out.println(a); System.out.println(b); } }
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); StringTokenizer st = new StringTokenizer(s); int ur = Integer.parseInt(st.nextToken()); int..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q18301 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); StringTokenizer st = new StringTokenizer(s); int n1 = Integer.parseInt(st.nextToken()); i..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q17496 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); StringTokenizer st = new StringTokenizer(s); int n = Integer.parseInt(st.nextToken()); in..
백준 온라인 저지에서 Java로 문제를 해결한 후 제출하려고 했는데 컴파일 에러가 난 모습이다. Java소스를 제출할 경우에 class명을 Main으로 설정해 주어야 한다.
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q17256 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s1 = bf.readLine(); String s2 = bf.readLine(); StringTokenizer st = new StringTokenizer(s1); StringTokenizer..