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:
5/6
Explanation:
5 of the sides of the die are not the number 5,
<em>Hence, </em><em>the answer is...</em>
<em>5/6</em>
Answer:
Correct, it is 15
Step-by-step explanation:
Because 3 turns into 9, you also want to multiply the other by 3, so you’d do 5x3 to get 15