Write a program to find the square root of a positive number
Answers
Answered by
1
Answer:
//to calculate square root of a number
class square_root
{
void main(int a)
{
int s= a*a
System.out.println("square is"+s)
}//end of function
}//end of class
Similar questions