Answer:
1 1/4
1.25
Step-by-step explanation:
Answer:
x = 24°
Step-by-step explanation:
the sum of the interior angles in a triangle = 180°
so:
(2x + 5°) + 64° + 3x - 9° = 180°
combine like terms:
5x + 60° = 180°
subtract 60° from each side of the equation:
5x = 120°
x = 24°
The answer is a if the line is dotted/dashed. The answer is c if the line isn't dotted/dashed.
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);
Answer:
B
Step-by-step explanation: