Code/baekjoon [ 단계별 ]9 백준 단계별 문제 <배열> 백준 1546 자바 평균 1. 배열을 사용해서 푼 경우 Int형 배열을 선언하고 거기에 맞춰서 문제를 푼 경우는 아래와 같다. package Array; import java.util.Scanner; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; import java.util.StringTokenizer; public class Q1546 { public static void main(String args[]) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int .. 2022. 2. 19. 백준 단계별 문제 <1차원 배열> 백준 문제 2562번 자바 문제 해결은 2가지 방법으로 해결했다. 1번째 방법은 Scanner와 배열을 이용한 방법 2번째 방법은 BufferReader를 통해 스트림 처리 1번째 방법 import java.util.*; public class Array_1 { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int max=0; int max_index=0; int[] arr = {sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt() }; sc.c.. 2022. 2. 16. 백준 단계별 문제 <for문> 백준 문제 2438 번 풀었던 코드 import java.util.*; public class Test_1 { public static void main(String args[]){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for(int i=0;i0;j--){ System.out.print("*"); } System.out.println(); } } } 이중 for문으로 구현했지만, 이 경우에는 두번째 for문의 변수를 복사하는 것보다 (int j=0; j 2022. 2. 14. 백준 단계별 문제 <if문 > [14681번] : 사분면 고르기 자바 import java.util.*; public class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); sc.close(); if(x>0){ if(y>0) System.out.print(1); else System.out.print(4); } else{ if(y>0) System.out.print(2); else System.out.print(3); } } } [2884번] : 알람 시계 import java.util.*; public class Main{ public static vo.. 2022. 1. 20. 이전 1 2 3 다음 반응형