You could do:
1 mile : 1,760 yards.
So, you would multiply 1790 times 2 and get 3520. The closest thing to 4500 yards is 3520.
So you get 2 miles and 980 yards.
Answer:
The answer is 52 but I do not no how to explain it
Step-by-step explanation:
Sorry
Answer:
a. 1,275.49 m²
Step-by-step explanation:
SA = 2πr² + 2πrh
SA = 2π(7)² + 2π(7)(22)
SA = 98π + 308π
SA = 406π
SA ≈ 1,275.49 m²
Answer:
all i know is A and it is -1,-2
Step-by-step explanation:
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;
}