SOLID BASIC

    [백준] 자바 - 2750번

    import java.util.Scanner; class Main{ public static void main(String[] args){ Scanner in = new Scanner(System.in); int n = in.nextInt(); int[] arr = new int[n]; for(int i = 0; i arr[j]){ int tmp = arr[j]; arr[j] = arr[i]; arr[i] = tmp; } for(int i = 0; i< n; i++) System.out.println(arr[i]); } }

    [백준] 자바: 9498번

    import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner in = new Scanner(System.in); int score = in.nextInt(); if(90

    [백준] 자바 - 11382 꼬마 정민

    import java.util.Scanner; class Main{ public static void main(String args[]) { Scanner in = new Scanner(System.in); Long A = in.nextLong(); Long B = in.nextLong(); Long C = in.nextLong(); System.out.println(A+B+C); } } 처음에 문제에서 범위 보고 뭐지...했는데 Long 범위로 받아야함을 의미하는 거였음

    [백준] 자바 - 10172번 개

    public class Main{ public static void main(String args[]){ System.out.println("|\\_/|"); System.out.println("|q p| /}"); System.out.println("( 0 )\"\"\"\\"); System.out.println("|\"^\"` |"); System.out.println("||_/=\\\\__|"); } } " 큰 따옴표 \ 백슬래쉬 는 이스케이프( \ ) 문자 없이 단독으로는 출력할 수 없다.

    [백준] 자바 - 10171번 고양이

    public class Main { public static void main(String[] args) { System.out.println("\\ /\\"); System.out.println(" ) ( ')"); System.out.println("( / )"); System.out.println(" \\(__)|"); } } 이스케이프 문자를 사용해야함 풀다가 자꾸 출력 형식이 잘못되었다고 뜨길래 대체 뭐가 문제지? 했는데 띄어쓰기가 잘못되어있어서 고양이 모양이 안 나온다는게 문제였음 ㅎ..ㅋ...ㅋㅋ.... 어이가 없구나

    [백준] 자바 - 2588번 곱셈

    import java.util.Scanner; class Main { public static void main(String args[]) { Scanner in = new Scanner(System.in); int A = in.nextInt(); String B = in.next(); in.close(); System.out.println(A * (B.charAt(2) - '0')); System.out.println(A * (B.charAt(1) - '0')); System.out.println(A * (B.charAt(0) - '0')); System.out.println(A * Integer.parseInt(B)); } }

    [백준] 자바: 백준 10430번

    import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int A = in.nextInt(); int B = in.nextInt(); int C = in.nextInt(); in.close(); System.out.println( (A+B)%C ); System.out.println( (A%C + B%C)%C ); System.out.println( (A*B)%C ); System.out.println( (A%C * B%C)%C ); } }

    [SOPT] 솝트 DO SOPT 33기 안드로이드 파트 합격

    [SOPT] 솝트 DO SOPT 33기 안드로이드 파트 합격

    고대하던 IT 연합동아리 솝트에 최종 합격했다. 내가 지원한 파트는 안드로이드 파트이고, 어제 오티와 뒷풀이에 다녀왔다. 좋은 사람들을 정말 많이 만났다 다들 열정 넘침 곧 서류와 면접 후기도 작성할 예정이다. 앱잼...솝커톤...스터디...워크샵...등등등 매우 기대된다!

    [JAVA] Comparable 과 Comparator 차이

    https://st-lab.tistory.com/243 자바 [JAVA] - Comparable 과 Comparator의 이해 아마 이 글을 찾아 오신 분들 대개는 Comparable과 Comparator의 차이가 무엇인지 모르거나 궁금해서 찾아오셨을 것이다. 사실 알고보면 두 개는 그렇게 어렵지 않으나 아무래도 자바를 학습하면서 객 st-lab.tistory.com 자료구조 공부하다가 comparator 과 comparable 차이점에 대한 의문이 생김 구글링을 하다가 이해가 잘 되도록 정리된 글을 발견해서 블로그에도 남긴다.

    [자료구조] 자료구조 복습 시작 ~ (2023.09)

    [자료구조] 자료구조 복습 시작 ~ (2023.09)

    지난 학기에 자료구조 수업을 들었는데 c언어로 들은데다가 한 번의 전공 강의를 수강한 것으로는 아직 미숙하다고 생각해서 자료구조를 자바로 공부하기 시작했다. 자료구조와 함께 배우는 알고리즘 입문 - 자바편으로 기초부터 다시 공부하고 있다. 블로그에도 차차 기록해야겠다.