본문 바로가기

baekjoon5

[백준/BAEKJOON] 1330번 두 수 비교하기 JAVA 1. readLine() 은 한 행을 전부 읽기 때문에 공백 단위로 입력해 준 문자열을 공백단위로 분리해주어야 문제를 풀 수 있을 것이다. 2. br.readLine() 을 통해 읽어온 것을 split(" ") 하여 공백 단위로 나눠준 뒤 String 배열에 각각 저장하는 방법이다. import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.*; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new Inp.. 2021. 8. 9.
[J STORY] [백준/BAEKJOON] 10869번 사칙연산 JAVA 1. 두 자연수를 입력받는다. 2. System.out.println을 이용하여 연산을 출력한다. import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); sc.close(); System.out.println(a+b); System.out.println(a-b); System.out.println(a*b); System.out.println(a/b); System.out.println(a%b); } } 2021. 8. 9.
[백준/BAEKJOON] 10998번 A*B JAVA * 두 수의 곱셈을 출력한다. import java.util.Scanner; a와 b변수에 값을 받아 a*b 출력 import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); sc.close(); System.out.println(a*b); } } 2021. 8. 8.
[백준/BAEKJOON] 10172번 개 JAVA 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("||_/=\\\\__|"); } } 2021. 8. 8.
[백준/BAEKJOON] 10171번 고양이 JAVA 위 예제와 같이 고양이를 출력하시오. 자바에서 바로 출력 안되는것 \(역슬래쉬), "(큰 따음표) 이기 때문에 이 두개 앞에는 \를 써서 표현해주어야함 System.out.println은 출력+줄바꿈 System.out.print는 오로지 출력 public class Main { public static void main(String[] args) { System.out.println("\\ /\\"); System.out.println(" ) ( ')"); System.out.println("( / )"); System.out.println(" \\(__)|"); } } 2021. 8. 8.