Computer Science, asked by vishaldon46, 7 months ago

a) Write java expression for the following c = a + b²;​

Answers

Answered by BrainlyProgrammer
4

Answer:

c=a+Math.pow(b,2);

Follow me mark me brainliest

Explanation:

Answered by anindyaadhikari13
1

Question:-

Write the Java expression for the following.

Solution:-

Given,

c=a+b²

The Java expression will be,

c=a+b*b;

Similar questions