If a=5 and b=39. Write a java program to find the value of V(a^2+b^2).
Answers
Answered by
0
Answer:
class value
{
public static void main(String[] args)
{
int a=5,b=39,v=0;
v=(a*a)+(b*b);
System.out.println("Value of V= "+v);
}
}
Please rate the answer if you found it helpful and also MARK AS BRALIEST.
Thank You!!
Similar questions