5,270 is 5,267.82 rounded to the nearest ten
hope this helps
i would just round 9.3 to 9 and 4.4 to 4 so i subtract 9-4 so that equals 5 so about a 5 mile diffrence
#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)