일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 알고리즘
- CSS
- 웹프로그래밍
- algorithm
- java
- 필기후기
- 프로그래밍
- 웹
- 공부
- 확인문제
- 후기
- 인강
- 프로그래머스
- 수박수박수박수박수?
- 농은면접
- 건보필기
- 프로그래밍언어
- 중소기업면접
- 이클립스
- HTML
- 웹개발
- 백준
- BOJ
- 필기
- 정수내림차순으로배치하기
- Linux
- 한국재정정보원
- 연결요소의개수
- 부스트코스
- 코딩
- Today
- Total
목록Algorithm (116)
공부하는 히욤이
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
SW Expert 1966. 숫자를 정렬하자* 문제의 저작권은 SW Expert에 있습니다 12345678910111213141516171819202122232425import java.util.Arrays;import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); for (int test_case = 1; test_case
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..