X axes are supposed to be positive and the y is negative.
Answer:
y= 5.333
Step-by-step explanation:
Answer:
Exact form: -7/10
Decimal form: -0.7
Step-by-step explanation:
Isolate the variable by dividing each side by by factors that don't contain the variable.
2.48 can be rounded pretty much any number between 2.45 to 2.5
<span />
#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)