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:
The height of the cone-shaped cup is 6 inches and the diameter at the top is 3 inches. What is ... Both cones and cylinders have circular bases.
Step-by-step explanation:
Answer: 7/3
Step-by-step explanation:
1. you multiply 2/7 on both sides to get x by it self.
2. then you can cross out both the 2's and get 7/3 as the final answer.
12 characters per inch . . . 12 inches in a foot . . . 3 feet in a yard
so 12 x 12 x 3 = 432 characters in a yard
Answer:
18 in. would be the correct answer.
Step-by-step explanation: