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;
}
You could add the whole number parts first then add the fractions. Finally add the 2 results.
Answer:
Every repeating or terminating decimal is a rational number
Each repeating decimal number satisfies a linear equation with integer coefficients, and its unique solution is a rational number.
Answer:
50%
Step-by-step explanation:
10 kg of mixed nuts that contain 60% peanuts
60(10)
plus
15 kg of a different brand of mixed nuts. with x% peanuts
x(15)
=
That makes 25 kg with 54% peanuts
54(25)
--------------------------
Equation
60(10) + x(15) = 54(25)
600 + 15x = 1350
Subtract 600 from both sides
15x = 750
Diviede both sides by 15
x = 50
50%