Computer Science, asked by pushkaranand6421, 1 year ago

Write the Java expression for

f=uv\(u+c)

Answers

Answered by harmankaur04
13
The Java expression for this is:
f= (u*v)/(u+c);

this cannot be termed as an expression rather u should term it as a statement because we are storing it in a variable f.. An expression just means some operators with literals..

Hope it helps you..
Answered by Anonymous
9

Answer:

I think your answer is f = u*v / u + c

Similar questions