Answer:
3.428 or 3 wholes 3/7
Step-by-step explanation:
6 : 7 = n : 4 : 2
6 : 7 = n : 4
6/7 = n/4
7n = 24
n = 24 /7
n = 3. 428 or 3 wholes 3/7
J.
x represents the minutes and y shows how many gallons over that time.
Okay.. well did you try to do it on your own at least ? I help you, but what do you know already so we can go on from there.
Answer:
it’s false
Step-by-step explanation:
#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)