The temperature change on the second day is greater than the temperature change on the first day.
<h3>What is temperature change?</h3>
The term temperature change refers to the difference in the temperature between the sunrise and the sunset. The temperature at sunrise and sunset are shown in the table attached to this answer.
The change in temperature on the first day is;
13.49 - (-11.31) = 24.80
The change in temperature on the second day is;
25.25 - (-7.69) = 32.94
Thus, the temperature change on the second day is greater than the temperature change on the first day.
Learn more about temperature change:brainly.com/question/11186605
#SPJ1
Y=0.72(3) i think tht is the answer
Answer:
-1
Step-by-step explanation:
-2/3*-3-3
2-3
= -1
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);