Computer Science, asked by IRONMAN1714, 6 days ago

You have to write a java program.

Attachments:

Answers

Answered by itxhorror
0

I DONT KNOW BUT HOPE math.sqrt(a*a+b*b)

THIS IS YOUR ANSWER

Answered by debopriyo02012008dey
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