Perfect Square Program in Java

In this tutorial, we will write a java program to check if a given number is a perfect square or not. Before that, you should have knowledge of the following topic in Java. java function if..elsestatement in java We will look at two java perfect square programs: With sqrt() function Without sqrt() funciton Both of … Read more

Bouncy Number Program in Java

In his tutorial, we will learn how to write a java program to check bouncy number. Before we code, let us understand what is a bouncy number. Bouncy Number A number is said to be a bouncy number if the digits of that number are in random order that is not sorted. Example: 121575, 521634, … Read more

Three Dimensional Array Program in Java

Let us go through a three dimensional array in java language. Before that, you may go through the following topic in java. Arrays in Java Three Dimensional (3D) Array program 3D arrays are the multidimensional array in java. They are quite complicated as they run on three loops. In order to initialize or display the … Read more