Computer Science, asked by parulnavikaushik723, 3 months ago

Write a program in Java to find the square of 16. Single line text​

Answers

Answered by DeblinaDutta
0

Explanation:

public class square

{

public static void main( )

{

double s = Math.pow(16,2);

System.out.println(s);

}

}

Similar questions