Write the Java expression for
f=uv\(u+c)
Answers
Answered by
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..
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
9
Answer:
I think your answer is f = u*v / u + c
Similar questions