- 2
X = Y²+Z² - (Y-X)
Please solve this in c language and give me solution
1 Odpowiedź
+ 3
Taufique Hashmi
Do self.
We are not here to provide solutions.
Hint:
Take x, y, z as input and apply logic like this:
int result = y * y + z * z - (y - x);