Computer Science, asked by gipsyjudu, 10 months ago

Write the Java expression for the following :
1. p=a^2+bc
2.m=(a^2-b^2)/ab

Answers

Answered by Anonymous
5

Answer:

1.  int p=a*a + b*c;

2.double m=(a*a - b*b)/a*b;

Similar questions