The bottom one
That should be correct!!!
The answer is 76 because Mai’s younger brother has been saving up for that long it just makes since
26 - 8 = 18.
James has 18 apples.
Answer:
A. 24+24+120+160+200
Step-by-step explanation:
Surface area of the triangular prism= addition of the area of each shape that forms the prism
There are two triangles
Area of a triangle=1/2*base*height
=1/2*8*6
=1/2*48
=24
Area of two triangles=24+24
There are 3 rectangles with different dimensions
Back rectangle=length×width
=20×6
=120
Bottom rectangle=length ×width
=20x8
=160
Top rectangle=length × width
=20×10
=200
Surface area =Area of two triangles + Back rectangle + Bottom rectangle + Top rectangle
=24+24+120+160+200
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;
}