Answer:
The answer to your question is 23.42 ft
Step-by-step explanation:
Data
base = 6 ft
height = 4 ft
Process
1.- Calculate the length of the rectangle. Only consider the base and the left and right sides.
Length = 6 + 4 + 4
Length = 14 ft
2.- Calculate the Perimeter of the semicircle
Formula
Perimeter = 2πr/2 = πr
-Calculate the radius
radius = 6/2 = 3 ft
-Find the perimeter
Perimeter = 2(3.14)(3)/2
-Result
Perimeter = 9.42 ft
3.- Calculate the perimeter of the window
Perimeter = 14 + 9.42
= 23.42 ft
Answer:
it's 5000
Step-by-step explanation:
50*100=5000
hope it helps:p
Answer:
kiwis = $1.5
mangoes = $2.25
Step-by-step explanation:
Two equations can be derived from the question
2m + 3k = 9 equation 1
5m + 2k = 14.25 equation 2
m = mangoes
k = kiwis
multiply equation 1 by 5 and 2 by 2
10m + 15k = 45 equation 3
10m +4k = 28.5 equation 4
Subtract equation 4 from 3
11k = 16.5
k = 1.5
Substitute for k in equation 1
2m + 3(1.5) = 9
2m + 4.5 = 9
2m = 4.5
m = 2.25
Answer:
Step-by-step explanation:
it is adding or subtrating
It takes value from a user and then user the operation of (+,-,*/).
i used c++ programming language to solve this program:
#include<iostream>
using namespace std;
int main() {
int var1, var2;
char operation;
cout << "Enter the first number : ";
cin >> var1;
cout << endl;
cout <<"Enter the operation to be perfomed : ";
cin >> operation;
cout << endl;
cout << "Enter the second nuber : ";
cin >> var2;
cout << endl;
bool right_input = false;
if (operation == '+') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 + var2);
right_input = true;
}
if (operation == '-') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '*') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 * var2);
right_input = true;
}
if (operation == '/' && var2 != 0) {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '/' && var2 == 0) {
cout << "Error. Division by zero.";
right_input = true;
}
if (!right_input) {
cout << var1 << " " << operation << " " << var2 << " = " << "Error;";
cout << "Invalid Operation!";
}
cout << endl;
system("pause");
return 0;
}