본문 바로가기
알고리즘/백준 문제 풀이

[BOJ/백준] 1001번 A - B - [c/c++] 풀이

by 미니상미니 2022. 10. 8.
반응형

https://www.acmicpc.net/problem/1001

 

1001번: A-B

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

www.acmicpc.net

 

 

 

 


  • 문제

단계별로 풀어보기 - 입출력과 사칙연산 - [4단계] 1001번


해설

간단한 사칙연산 문제이다.

 

코드

c

#include <stdio.h>

int main() {

    int a, b;
    
    scanf("%d %d", &a, &b);
    
    printf("%d", a - b);

    return 0;
}

 

c++

#include <iostream>

using namespace std;

int main() {
    
    int a, b;
    
    cin >> a >> b;
    
    cout << a - b;
    
    return 0;
}

 

 

 

 

 

반응형

댓글