When you separate them
Solve them separately:
Remove the denominators:
Find GCF (Greatest Common Factor):
Answer:
96
Step-by-step explanation:
First, you find the area of RPQ using 1/2×base×height. That is, 1/2×6×8. And the answer is 24. Then you multiply 24 by 4 to get the area of all the sides excluding the base to get 96.
5/2
70 is the constant number that doesn’t change, but anytime you increase t you are raising it above 5/2. So every time you grow 5/2.
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
<em>To convert decimal number 1</em><em>2</em><em>3</em><em> to quinary, follow these steps:</em>
<em>1</em><em>.</em><em> </em><em>Divide 1</em><em>2</em><em>3</em><em> </em><em>by 5 keeping notice of the quotient and the remainder.</em>
<em>2</em><em>.</em><em>Continue dividing the quotient by 5 until you get a quotient of zero.</em>
<em>3</em><em>.</em><em> </em><em>Then just write out the remainders in the reverse order to get quinary equivalent of decimal number 1</em><em>2</em><em>3</em><em>.</em>