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
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
Science,
1 month ago
Environmental Sciences,
8 months ago
Science,
8 months ago
Math,
8 months ago