Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- ubuntu
- install opencv-4.4.0 on ubuntu 22.04
- JungOl
- 기초
- mariaDB
- 오늘도 우라라 펫
- 토픽
- MSG
- LeetCode
- ros
- publish
- 반복문
- while
- 마리아 DB
- 데이터 베이스
- mysql
- C++
- 오늘도 우라라 펫 공략
- Linux
- 환경설정
- 우분투
- C언어
- topic
- 리눅스
- Subscribe
- 등차수열
- 프로그래밍
- 그랑사가
- 오늘도 우라라 공략
- 오늘도 우라라
Archives
- Today
- Total
하루의 쉼터
[BAEKJOON] 1001. A-B - C++ 본문
반응형
| 1001. A-B
Category :
입출력과 사칙연산
Title :
1001. A-B
Rank :
Bronze
Question :
두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오.
Condition :
Input
첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)
Output
첫째 줄에 A-B를 출력한다.
Code :
#include<iostream>
class cl_solution{
public :
int fb_sub(int a, int b);
};
int cl_solution::fb_sub(int a, int b){
if (0 < a && b < 10)
return a - b;
else
return -1;
}
int main() {
cl_solution* sol = new cl_solution();
int a = 0, b = 0;
std::cin >> a;
std::cin >> b;
std::cout<<sol->fb_sub(a, b)<<std::endl;
delete sol;
return 0;
}
BAEKJOON :
https://www.acmicpc.net/problem/1001
GitHub :
https://github.com/Anchangun/BaekJoon/tree/main/Question/Math/Calculation/1001.%20A-B
반응형
'Coding Test > BaekJoon' 카테고리의 다른 글
[사칙연산] 1008. A/B - C++ (0) | 2022.01.11 |
---|---|
[사칙연산] 10998. AxB - C++ (0) | 2022.01.11 |
[BAEKJOON] 1000. A+B - C++ (0) | 2022.01.06 |
[BAEKJOON] 10172. 개 (0) | 2022.01.06 |
[BAEKJOON] 5622. 다이얼 (0) | 2021.11.29 |
Comments