hopefully someone helps u with this tho sorry
A is the answer hope this helps
Answer:
-1/3
Step-by-step explanation:
if we use the rise over run method we see a fall of 1 and a run of 3. since we are using fall instead of rise that makes this slope negative. hope this helped :)
The answer is f(x)‐¹=(+/-)x+25+5
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)