일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 공부
- 후기
- 필기후기
- java
- 연결요소의개수
- 웹
- 부스트코스
- 중소기업면접
- 인강
- 프로그래머스
- 웹개발
- CSS
- algorithm
- 한국재정정보원
- 프로그래밍
- 정수내림차순으로배치하기
- 수박수박수박수박수?
- 알고리즘
- BOJ
- 필기
- Linux
- 코딩
- 백준
- 농은면접
- HTML
- 건보필기
- 웹프로그래밍
- 프로그래밍언어
- 확인문제
- 이클립스
- Today
- Total
목록전체 글 (168)
공부하는 히욤이
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
SW Expert 1989. 초심자의 회문 검사* 문제의 저작권은 SW Expert에 있습니다 123456789101112131415161718192021222324252627282930313233343536373839404142import java.util.Scanner;public class Solution { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); //BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); for(int test_case = 1; test_..
SW Expert 1284. 수도 요금 경쟁* 문제의 저작권은 SW Expert에 있습니다 123456789101112131415161718192021222324252627282930313233343536import java.util.Scanner;public class Solution { static int answer; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); //BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int p; //A사 1리터당 P원 int q; //B사의 R리터 이하 요금 in..