Answer:
x = –8
Step-by-step explanation:
Answer:
Yes, but please attach it.
Step-by-step explanation:
You haven't yet.
SA= Lateral Area + Area (of base)
Lateral area = perimeter of base x height
An isosceles triangle has two congruent base segments. The hypotenuse of an isosceles right triangle is (length of base segment) x (the square root of 2). I did the math for you (shown above) to get 5 as a base.
So 5 + 5 + square root of 50 is your perimeter
Multiply the perimeter times your height (8) and you get the lateral area.
Add your lateral area to the base area (triangle = 1/2 bh)
LA = 136.568...
Area of Triangle base = 12.5
Surface area = 149.068... square cm
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;
}