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;
}
Answer:
First ans is true but second one is not the cotrect
one
Answer: 92/3 OR 30 2/3 ??
Step-by-step explanation:
You can create and solve a proportion to get this answer.
Let x be the number of litters in 2500.
1. Write out proportion. 1/1000=x/2500
2. Cross Multiply. 1000x=2500
3. Divide by 1000 on each side. x=25
Answer:
part A :BODMAS ( Bracket of Division Multiplication Addition Subtraction )
part b; Bracket (2+3.2) = - 2- 3.2
= 16- 2-3.2 +30-5
ADDITION:-3.2+30 = - 33.2
16-2(-33.2)30-5
14-33.2 +30-5
14-33.2 +25
-19.2+25
-44.2
Step-by-step explanation:
THE FOLLOWING EQUATION CAN ONLY BE SOLVED USING BODMAS