1단계 : 2739번 / 구구단
N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다.
import java.util.Scanner;
public class Main {
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int dan = sc.nextInt();
for (int i = 1; i<10; i++){
System.out.println(dan + " * " + i + " = " + dan*i);
}
}
}
2단계 : 10950번/ A+B - 3
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main {
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
int[] Array = new int[T];
for (int i = 0; i<T; i++){
int A = sc.nextInt();
int B = sc.nextInt();
Array[i] = A + B;
}
for (int i = 0; i<T; i++){
System.out.println(Array[i]);
}
}
}
3단계 : 8393번 / 합
n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main {
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int sum = 0;
for (int i = n; i > 0; i--){
sum += i;
}
System.out.println(sum);
}
}
4단계 : 25304번 / 영수증
준원이는 저번 주에 살면서 처음으로 코스트코를 가 봤다. 정말 멋졌다. 그런데, 몇 개 담지도 않았는데 수상하게 높은 금액이 나오는 것이다! 준원이는 영수증을 보면서 정확하게 계산된 것이 맞는지 확인해보려 한다.
영수증에 적힌,
- 구매한 각 물건의 가격과 개수
- 구매한 물건들의 총 금액
을 보고, 구매한 물건의 가격과 개수로 계산한 총 금액이 영수증에 적힌 총 금액과 일치하는지 검사해보자.
import java.util.Scanner;
public class Main {
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int X = sc.nextInt();
int N = sc.nextInt();
int[] Price = new int[N];
int[] num = new int[N];
for (int i=0; i<N; i++){
int a = sc.nextInt();
int b = sc.nextInt();
Price[i] = a;
num[i] = b;
}
int sum = 0;
for(int i=0; i<N; i++) {
sum += Price[i] * num[i];
}
if (X == sum){System.out.println("Yes");}
else {System.out.println("No");}
}
}
5단계 : 15552번 / 빠른 A+B
Java를 사용하고 있다면, Scanner와 System.out.println 대신 BufferedReader와 BufferedWriter를 사용할 수 있다. BufferedWriter.flush는 맨 마지막에 한 번만 하면 된다.
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.StringTokenizer;
public class Main {
public static void main(String args[]) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st;
int T = Integer.parseInt(br.readLine());
for (int i=0; i<T; i++){
st = new StringTokenizer(br.readLine());
bw.write(Integer.parseInt(st.nextToken()) + Integer.parseInt(st.nextToken()) + "\n");
}
bw.flush();
}
}
기존 A+B 문제와 다르게 Scanner 가 아닌 버퍼를 사용하여 실행시간을 줄이는 것이 목표인 문제이다.
BufferedReader와 BufferedWriter와 관련된 게시물은 아래와 같다.
https://notorious.tistory.com/120
6단계 : 11021번 / A+B - 7
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
int[] array = new int[T];
for(int i=0; i<T; i++){
int A = sc.nextInt();
int B = sc.nextInt();
array[i] = A+B;
}
for (int i=0; i<T; i++){
System.out.println("Case #" + (i+1) + ": " + array[i]);
}
}
}
7단계 : 11022번 / A+B - 8
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
int[] Sum_array = new int[T];
int[] A_array = new int[T];
int[] B_array = new int[T];
for(int i=0; i<T; i++){
int A = sc.nextInt();
int B = sc.nextInt();
A_array[i] = A;
B_array[i] = B;
Sum_array[i] = A+B;
}
for (int i=0; i<T; i++){
System.out.println("Case #" + (i+1) + ": " + A_array[i] + " + " + B_array[i] + " = " + Sum_array[i]);
}
}
}
8단계 : 2438번 / 별 찍기 - 1
첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for (int i = 1; i<=n; i++){
for (int j=0; j<i; j++){
System.out.print("*");
}
System.out.println();
}
}
}
9단계 : 2439번 / 별 찍기 - 2
첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제
하지만, 오른쪽을 기준으로 정렬한 별(예제 참고)을 출력하시오.
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for (int i = 1; i<=n; i++){
for (int j=n; j>0; j--){
if (j <= i){
System.out.print("*");
} else {System.out.print(" ");}
}
System.out.println();
}
}
}
10단계 : 10952번 / A+B - 5
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
while(true){
int a = sc.nextInt();
int b = sc.nextInt();
if(a==0 && b==0) break;
System.out.println(a+b);
}
}
}
11단계 : 10951번 / A+B - 4
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
while(sc.hasNextInt()){
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a+b);
}
}
}
<10단계 : 10952번 / A+B - 5> 에서는 0 0 이 입력되면 프로그램이 종료 되었다.
<10단계 : 10952번 / A+B - 5> 문제와의 차이점은 특별하게 입력을 종료할 분기점이 없다는 것이다.
Scanner 라이브러리의 hasNextInt() 함수를 사용하여 입력된 값이 정수형이 아닐 경우 반복문을 종료하도록 조건 설정을 하였다.
토큰 값으로 정수형이 입력되면 ture 를 반환 , 그렇지 않은 경우 false를 반환 하게 하는 함수이다.
공식문서 참고
https://docs.oracle.com/javase/7/docs/api/
12단계 : 1110번 / 더하기 사이클
0보다 크거나 같고, 99보다 작거나 같은 정수가 주어질 때 다음과 같은 연산을 할 수 있다. 먼저 주어진 수가 10보다 작다면 앞에 0을 붙여 두 자리 수로 만들고, 각 자리의 숫자를 더한다. 그 다음, 주어진 수의 가장 오른쪽 자리 수와 앞에서 구한 합의 가장 오른쪽 자리 수를 이어 붙이면 새로운 수를 만들 수 있다. 다음 예를 보자.
26부터 시작한다. 2+6 = 8이다. 새로운 수는 68이다. 6+8 = 14이다. 새로운 수는 84이다. 8+4 = 12이다. 새로운 수는 42이다. 4+2 = 6이다. 새로운 수는 26이다.
위의 예는 4번만에 원래 수로 돌아올 수 있다. 따라서 26의 사이클의 길이는 4이다.
N이 주어졌을 때, N의 사이클의 길이를 구하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int n = sc.nextInt(); // 0<=n<=99 인 정수 입력 받음
int a = n / 10;
int b = n % 10;
int count = 0;
while(true){
count ++;
int c = (a + b) % 10;
a = b; b = c;
if((10*a + b) == n){
break;
}
}
System.out.println(count);
}
}
'백준 > 단계별로 풀어보기' 카테고리의 다른 글
백준 - 단계별로 풀어보기 - JAVA (6단계 : 문자열 / 10문제) (2022.12.25 일) (0) | 2022.12.25 |
---|---|
백준 - 단계별로 풀어보기 - JAVA (5단계 : 함수 / 3문제) (2022.12.25 일) (1) | 2022.12.25 |
백준 - 단계별로 풀어보기 - JAVA (4단계 : 1차원 배열 / 9문제) (2022.12.24 토) (2) | 2022.12.24 |
백준 - 단계별로 풀어보기 - JAVA (2단계 : 조건문 7문제) (2022-12-22 목) (0) | 2022.12.22 |
백준 - 단계별로 풀어보기 - JAVA (1단계 : 입출력과 사칙연산 / 14문제) (2022.12.22 목) (1) | 2022.12.22 |