Answer:
x = ⅘
Step-by-step explanation:
For clarity, exponents should be marked with a ^. 25x² can be written as 25x^2.
25x² = 16
divide both sides by the 25
x² = 16/25
take the square root of both sides
x = √(16/25) = √16/√25 = 4/5
Answer:
We know that C is the total number of cans in a complete case.
Victoria counts:
16 full cases, so in those we have: 16*C cans.
4 cases with 5 missing cans, so in those we have:
Then if each case has C cans, the cases that are missing 5 cans have:
C - 5 cans.
Then in those four cases we have a total of: 4*(C - 5) cans.
And Victoria knows that there are 220 cans, then we have that:
16*C + 4*(C - 5) = 220
16*C + 4*C - 20 = 220
16*C + 4*C = 220 + 20 = 240
20*C = 240
C = 240/20 = 12
Then each case has 12 cans.
Then the number of cans in the cases with missing cans is:
12 cans - 5 cans = 7 cans.
Step-by-step explanation:
Hope this helps!!!!!!!! :D
Answer:
c
Step-by-step explanation:
Hope this helps.
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);