import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
    
        System.out.println(scanner.nextInt()-scanner.nextInt());
    }
}

핵심

입력 값을 Scanner로 받는다.

'자료구조&알고리즘 > 입출력과 사칙연산' 카테고리의 다른 글

A/B  (0) 2022.06.15
AxB  (0) 2022.06.15
A+B  (0) 2022.06.15
  (0) 2022.06.15
고양이  (0) 2022.06.15
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
        int value1 = scanner.nextInt();
        int value2 = scanner.nextInt();

        int answer = value1 + value2;

        System.out.println(answer);
    }
}

핵심

백준사이트는 입력 값은 Scanner로 받는다. 

'자료구조&알고리즘 > 입출력과 사칙연산' 카테고리의 다른 글

AxB  (0) 2022.06.15
A-B  (0) 2022.06.15
  (0) 2022.06.15
고양이  (0) 2022.06.15
We love kriii  (0) 2022.06.15
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("||_/=\\\\__|");
	}
}

핵심

이클립스 같은 IDE는 복사 붙여넣기 시 고맙게도 이스케이프 문자를 자동으로 넣어 보정해준다.

단 제출 시에는 한줄 씩 복사해서 넣어야 통과한다.

'자료구조&알고리즘 > 입출력과 사칙연산' 카테고리의 다른 글

A-B  (0) 2022.06.15
A+B  (0) 2022.06.15
고양이  (0) 2022.06.15
We love kriii  (0) 2022.06.15
Hello World  (0) 2022.06.15
public class Main {
	public static void main(String[] args) {
		System.out.println("\\    /\\");
		System.out.println(" )  ( ')");
		System.out.println("(  /  )");
		System.out.println(" \\(__)|");
	}
}

핵심

이스케이프 문자 \ 활용법

'자료구조&알고리즘 > 입출력과 사칙연산' 카테고리의 다른 글

A-B  (0) 2022.06.15
A+B  (0) 2022.06.15
  (0) 2022.06.15
We love kriii  (0) 2022.06.15
Hello World  (0) 2022.06.15

 

public class Main {
	public static void main(String[] args) {
		System.out.println("강한친구 대한육군");
		System.out.println("강한친구 대한육군");
	}
}

'자료구조&알고리즘 > 입출력과 사칙연산' 카테고리의 다른 글

A-B  (0) 2022.06.15
A+B  (0) 2022.06.15
  (0) 2022.06.15
고양이  (0) 2022.06.15
Hello World  (0) 2022.06.15
public class Main{
    public static void main(String[] args){
        System.out.print("Hello World!");
    }
}

주의사항

클래스 Main일 것

'자료구조&알고리즘 > 입출력과 사칙연산' 카테고리의 다른 글

A-B  (0) 2022.06.15
A+B  (0) 2022.06.15
  (0) 2022.06.15
고양이  (0) 2022.06.15
We love kriii  (0) 2022.06.15

+ Recent posts