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
- MSG
- ros
- while
- ubuntu
- C++
- Linux
- 마리아 DB
- 프로그래밍
- 오늘도 우라라
- mysql
- C언어
- 반복문
- 등차수열
- mariaDB
- 오늘도 우라라 펫
- 리눅스
- JungOl
- topic
- 환경설정
- publish
- 오늘도 우라라 펫 공략
- 그랑사가
- 토픽
- 우분투
- LeetCode
- 오늘도 우라라 공략
- Subscribe
- 데이터 베이스
- 기초
- install opencv-4.4.0 on ubuntu 22.04
Archives
- Today
- Total
하루의 쉼터
[사칙연산] 10998. AxB - C++ 본문
반응형
| 10998. AxB
Category :
입출력과 사칙연산
Title :
10998. AxB
Rank :
Bronze
Language :
C++
Question :
두 정수 A와 B를 입력받은 다음, A×B를 출력하는 프로그램을 작성하시오.
Condition :
Input
첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)
Output
첫째 줄에 A×B를 출력한다.
Code :
#include<iostream>
class cl_solution {
public:
int fn_mul(int a, int b);
};
int cl_solution::fn_mul(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->fn_mul(a, b) << std::endl;
delete sol;
return 0;
}
Backjoon :
https://www.acmicpc.net/problem/10998
GitHub :
https://github.com/Anchangun/BaekJoon/tree/main/Question/Math/Calculation/10998.%20AXB
반응형
'Coding Test > BaekJoon' 카테고리의 다른 글
[사칙연산] 10869. 사칙연산 - C++ (0) | 2022.01.11 |
---|---|
[사칙연산] 1008. A/B - C++ (0) | 2022.01.11 |
[BAEKJOON] 1001. A-B - C++ (0) | 2022.01.07 |
[BAEKJOON] 1000. A+B - C++ (0) | 2022.01.06 |
[BAEKJOON] 10172. 개 (0) | 2022.01.06 |
Comments