Answer:
45 Degrees
Step-by-step explanation:
Khan Academy
Answer: $16, 666.67
<u>Step-by-step explanation:</u>
Job 1: 0.06x
Job 2: 0.03x + 500
0.06x > 0.03x + 500
<u>-0.03x </u> <u>-0.03x </u>
0.03x > 500
<u>÷0.03</u> <u> ÷0.03 </u>
x > 16,666.67 <em>rounded to the nearest penny</em>
Answer:
<u>The area of a pizza made in that circular pan is 452.39 inches²</u>
Step-by-step explanation:
1. Let's review the information provided to us to answer the question correctly:
Diameter of the circular pan = 24 inches
Radius of the circular pan = 24/2 = 12 inches
2. What is the area of the pizza?
Let's use the formula of the area of a circle, this way:
Area = π * r²
Substituting with the real values, we have:
Area = 3.1416 * 12²
Area = 452.39 inches²
<u>The area of a pizza made in that circular pan is 452.39 inches²</u>
Hello,
function minmax(int p1,int p2,int p3, int adr_big, int adr_small)
{ int mini=p1,maxi=p1;
if (p1>p2) {mini=p2;}
else {maxi=p2;};
if (p3>maxi) maxi=p3;
if (p3<mini) mini=p3;
*adr_big=maxi;
*adr_small=mini;
};
// main
int a=31,b=5,c=19,big,small;
minmax(a,b,c,&big,&small);