If the wheel is $650=8% tax, the tax would be $52 we get that by multiplying 650*8% then add 650+52 and we get 702. so together the cheese wheel is $702
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:
Peter's number is 36.
Step-by-step explanation:
If you subtratct 13 from 36, you get 23.
If you multiply that times -3, you get -69.
(The way I got 23 was by dividing -69 and -3)
I hope this helped you even though it's late.
Answer:
For the first question it is 2.
2 x 2 = 4
5 x 2 = 10
4 + 10 - 14 = 0
The second question is -2
-2 x -2 = 4
5 x -2 = -10
4 + -10 + 6 = 0
Hope this helps
Step-by-step explanation: