Answer:
<h3>Princeton Florist</h3>
Let the total charge is y, the number of small arrangements is x.
<u>Total charge will be:</u>
<h3>Chad's Flowers</h3>
<u>Total charge will be:</u>
<u>Since the total charge is same in both shops, we have:</u>
<u>Solve for x:</u>
- 17x - 13x = 47 - 35
- 4x = 12
- x = 3
<u>Total cost is:</u>
<u>Small arrangements</u> = 3, <u>cost </u>= $86
15.5:1
62/4 = 15.5
15.5 : 1
Step-by-step explanation:
15. If f(x) = 20x, adding a $10 fee for cleaning would be
g(x) = 20x + 10
The graph of g(x) is shifted 10 units up from the graph of f(x).
16. f(x) = 2x + 1
g(x) = (2x + 1) + 5
h(x) = 3f(2x + 1)
g(x) shifted f(x) 5 units to the right.
h(x) is 3 times steeper than f(x).
If this is the correct answer, then please give it the brainliest.
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;
}
Answer:
The answer is 9/20
Step-by-step explanation: