일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 웹
- 공부
- 부스트코스
- 필기
- 수박수박수박수박수?
- 정수내림차순으로배치하기
- 프로그래머스
- algorithm
- 건보필기
- BOJ
- 한국재정정보원
- CSS
- 중소기업면접
- 이클립스
- 알고리즘
- 웹프로그래밍
- 코딩
- 웹개발
- 인강
- 프로그래밍
- 백준
- 필기후기
- 확인문제
- Linux
- 연결요소의개수
- HTML
- 농은면접
- 프로그래밍언어
- 후기
- Today
- Total
목록전체보기 (168)
공부하는 히욤이
10718번 : We love kriii* 문제 출처 : 백준 알고리즘 12345678public class Main { public static void main(String[] args) { System.out.println("강한친구 대한육군"); System.out.println("강한친구 대한육군"); }} Colored by Color Scriptercs
10172번 : 개* 문제 출처 : 백준 알고리즘 123456789101112131415import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("|\\_/|"); System.out.println("|q p| /}"); System.out.println("( 0 )\"\"\"\\"); System.out.println("|\"^\"` |"); System.out.println("||_/=\\\\__|"); } } Colored by Color Scriptercs한 줄 씩 println을 썼을 경우의 개가 정..
7287번 : 등록* 문제 출처 : 백준 알고리즘 1234567891011import java.util.Scanner; public class Main { public static void main(String[] args) { System.out.println(5); System.out.println("아이디"); } } Colored by Color Scriptercs 매우 간단한 문제지만 2번이나 런타임 에러가 떴다.첫번째 줄에는 내가 푼 문제 개수를 입력하고 두번째 줄에는 아이디를 입력해야 한다.다른 값을 넣을 경우 런타임 에러가 뜬다.
1001번 : A-B* 문제 출처 : 백준 알고리즘12345678910111213import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); System.out.println(a-b); } } Colored by Color Scriptercs
1000번 : A+B* 문제 출처 : 백준 알고리즘 12345678910111213import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); System.out.println(a+b); } } Colored by Color Scriptercs