I think in the first sentence, that should have been 3/4 instead of 34. Total amount of steak bought (lb)
total amount = (3/4 lb/steak)(12 steak) = 9 lb
To find the total amount that Silvia spends for each pound of steak, we divide $90 by 9 and that will give us an answer of $10.
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:
99.5
Step-by-step explanation:
Radius = Diameter/2
199/9
=99.5metres
The third one is the correct answer