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 | 31 |
Tags
- C++
- 반복문
- 등차수열
- 리눅스
- 우분투
- Linux
- 마리아 DB
- mariaDB
- LeetCode
- 오늘도 우라라 펫 공략
- MSG
- publish
- 기초
- 프로그래밍
- 그랑사가
- 오늘도 우라라 공략
- JungOl
- ros
- install opencv-4.4.0 on ubuntu 22.04
- C언어
- while
- mysql
- 데이터 베이스
- 오늘도 우라라 펫
- topic
- 오늘도 우라라
- ubuntu
- 환경설정
- 토픽
- Subscribe
Archives
- Today
- Total
하루의 쉼터
[사칙연산] 1008. A/B - C++ 본문
반응형
| 1008. A/B
Category :
입출력과 사칙연산
Title :
1008. A/B
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:
double fn_mul(int a, int b);
};
double cl_solution::fn_mul(int a, int b)
{
if (0 < a && b < 10) {
double d_a = 0, d_b = 0;
d_a = a;
d_b = b;
return d_a / d_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.precision(12);
std::cout << sol->fn_mul(a, b) << std::endl;
delete sol;
return 0;
}
BackJoon :
https://www.acmicpc.net/problem/1008
GitHub :
https://github.com/Anchangun/BaekJoon/tree/main/Question/Math/Calculation/1008.%20A%20div%20B
반응형
'Coding Test > BaekJoon' 카테고리의 다른 글
[사칙연산] 10430. 나머지 - C++ (0) | 2022.01.11 |
---|---|
[사칙연산] 10869. 사칙연산 - C++ (0) | 2022.01.11 |
[사칙연산] 10998. AxB - C++ (0) | 2022.01.11 |
[BAEKJOON] 1001. A-B - C++ (0) | 2022.01.07 |
[BAEKJOON] 1000. A+B - C++ (0) | 2022.01.06 |
Comments