Computer Science, asked by Bhaveshyeole1605, 2 months ago

Given the values of three variables a, b and c, write a program to compute and display the values of x, where
X= a / (b - c) in c

Answers

Answered by pragnyayadav22
0

Answer:

Explanation:

int a = 2;

int b = 3;

int c =4;

int x = a/(b-c);

System.out.println(x);

Similar questions
Math, 1 month ago