Write a program to perform the following task by using mathematics functions:-
i)Find and print the square root of 49.
I mark him birlianist who give me this program.
Answers
Answered by
4
Answer:
class square_root
{
static void main()
{
int a = 49;
double b= Math.sqrt(a);
System.out.println(b);
}
}
Plz Mark As BRAINLIEST
Similar questions