You have to write a java program.
Attachments:
Answers
Answered by
0
I DONT KNOW BUT HOPE math.sqrt(a*a+b*b)
THIS IS YOUR ANSWER
Answered by
0
Explanation:
class Main
{
public static void main(int a, int b)
{
int c;
c = Math.sqrt(a*a) + (b*b);
System.out.println("The result of √a² + b² is : "+c);
}
}
Similar questions