Answer:
126
Step-by-step explanation:
54 + x = 180
x = 180 - 54
x = 126
Answer:
$15.71 each
Step-by-step explanation:
I just followed the answer sheet
Answer:
7.07
Step-by-step explanation:
Angle M is 63 degrees because all 3 angles must add to 180.
Now use the law of sines:
sin(90)/x = sin(63)/6.3
Cross multiply: 6.3 sin (90) = x sin (63)
Divide by sides by sin (63): (6.3 sin (90))/sin (63) = x
Use a calculator: 7.07
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;
}
9514 1404 393
Answer:
250 cm²
Step-by-step explanation:
The lateral area is the total area of the 5 rectangular faces. Each is ...
A = LW = (10 cm)(5 cm) = 50 cm²
The lateral surface area is ...
LSA = 5 × 50 cm² = 250 cm²