Answer:
145
Step-by-step explanation:
m<4 and m<3 would equal 90 so subtract 55 from 90 and you get 35 for m<3 so you subtract 35 from 180 and you get 145
#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)
Answer: (x-6)/2
Step-by-step explanation:
x=2y+6
x-6=2y
(x-6)/2=y
y=(x-6)/2
Answer:
57
Step-by-step explanation: