x = -9
-3x when x is 3 would be -3(3) = -9
Answer:
Yo solo pongo esta respuesta que no dice nada porque busco puntiooooooos
Answer:
y = 3x - 10
Step-by-step explanation:
Starting with 3x - y = 10, add y to both sides:
3x = 10 + y
Then subtract 10 from both sides:
3x - 10 = y
If you switch the sides of the equation, it can also be written as:
y = 3x - 10
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);