본문 바로가기

with my rubber duck/codingTest44

백준 2439 별 찍기 - 2 풀기 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sc.close(); for(int i = 0;i i;k--) { System.out.print(" "); } for(int j =0;j 2022. 4. 11.
백준 2438 별 찍기 - 1 껌이지~ 문제 나의 답: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); for(int i = 1,n=num;i 2022. 4. 6.
백준 10818 최소, 최대 / 언제쯤 혼자서 풀 수 있을까... 문제 답 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] num = new int[n]; for (int i = 0; i max) { max = num[i]; }else if(num[i] 2022. 4. 5.
백준 8393 합 아 짱쉽네이거~ 문제 답 import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int sum = 0; for(int i = 1;i 2022. 4. 4.
백준 1924 자바 내가 이걸 풀다니 문제 월 일을 입력받고 요일 출력하는 코드 구현하기 (보잘것없는 나의) 답: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); // 달마다 더할 3월 1일 = ( 1월 + 2월 + y) % 7 // 1~7제외 나눈 나머지가 1 월 2 화 3 수 4 목 5 금 6 토 0일 int[] monthDays = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; int sum = 0; if (x == 1) { sum = 0; .. 2022. 4. 2.
bubble sorting package prob_method.answ; /* * [출력결과] * 내림 차순 결과 31 22 16 11 10 9 오름 차순 결과 9 10 11 16 22 31 */ public class Prob007_method { public static void main(String[] args) { int[] arr = { 10, 22, 9, 16, 11, 31 }; int[] result1 = sort(arr, "desc"); int[] result2 = sort(arr, "asc"); System.out.println("내림 차순 결과"); for (int i = 0; i < result1.length; i++) { System.out.println(result1[i]); } System.out.prin.. 2022. 3. 30.
728x90