일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 웹개발
- BOJ
- 이클립스
- 프로그래머스
- 공부
- 수박수박수박수박수?
- 프로그래밍
- CSS
- 부스트코스
- 프로그래밍언어
- 필기
- 확인문제
- 정수내림차순으로배치하기
- Linux
- 한국재정정보원
- HTML
- 건보필기
- 백준
- 웹프로그래밍
- 알고리즘
- 웹
- 중소기업면접
- algorithm
- 농은면접
- 코딩
- java
- 연결요소의개수
- 인강
- 필기후기
- 후기
- Today
- Total
목록Algorithm/BaekJoon (46)
공부하는 히욤이
1008번 : A/B* 문제 출처 : 백준 알고리즘12345678910111213141516import java.io.IOException;import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception, IOException { Scanner sc = new Scanner(System.in); double a = sc.nextDouble(); double b = sc.nextDouble(); System.out.println(a/b); } } Colored by Color Scriptercs
2438번 : 별 찍기 - 1* 문제 출처 : 백준 알고리즘 12345678910111213141516171819import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); if (N >=1 && N
2739번 : 구구단* 문제 출처 : 백준 알고리즘 12345678910111213141516import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); if (N 0; i--) { System.out.println(i); } } }} Colored by Col..
2742번 : 기찍 N* 문제 출처 : 백준 알고리즘 12345678910111213141516import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); if (N 0; i--) { System.out.println(i); } } }} Colored by Co..
2741번 : N 찍기 * 문제 출처 : 백준 알고리즘 12345678910111213141516import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); if (N