알고리즘 유형: 사칙연산

반응형

1. 문제 : 1000번 A+B : 두 숫자를 입력받아 더하고 출력하는 문제

난이도 : 브론즈 V (solved.ac 티어)


문제 링크 : https://www.acmicpc.net/problem/1000

 

1000번: A+B

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net


2. 문제 풀이

이 문제는 키보드를 이용해 숫자를 입력하는 방법과 출력하는 방법만 알면 풀 수 있는 문제이다.

Scanner(입력)에 더 자세한 설명 : https://programming-enjoy.tistory.com/7


3. 소스 코드 및 풀이 인증

1
2
3
4
5
6
7
8
public class Main{
    public static void main(String[] args) {
        java.util.Scanner in=new java.util.Scanner(System.in);
        int a=in.nextInt(); int b=in.nextInt();
        System.out.println(a+b);
        
    }
}
cs

 

반응형
반응형

1. 문제 : 1001번 A-B : 두 숫자를 입력받아 빼고 출력하는 문제

난이도 : 브론즈 V (solved.ac 티어)


문제 링크 : https://www.acmicpc.net/problem/1001


2. 문제 풀이

이 문제는 키보드를 이용해 숫자를 입력하는 방법과 출력하는 방법만 알면 풀 수 있는 문제이다.

Scanner(입력)에 더 자세한 설명 : https://programming-enjoy.tistory.com/7


3. 소스 코드 및 풀이 인증

1
2
3
4
5
6
7
8
public class Main{
    public static void main(String[] args) {
        java.util.Scanner in=new java.util.Scanner(System.in);
        int a=in.nextInt(); int b=in.nextInt();
        System.out.println(a-b);
        
    }
}
cs

 

반응형

+ Recent posts