Calculate Square root of Number

In this tutorial, we will learn how to write a Java program to calculate the square root of a given number Our program takes a number from the users as input and returns the square…

Print Prime Number in Given Range

In this tutorial we will learn to write a Java program that will output all prime numbers that are in a given range. Problem Our program takes two numbers as input. Now the program will…

Print first n Prime number Program in Java

In this tutorial, we are going to learn writing java program to print all the prime numbers that are smaller than or equal to the number given as an input by the user. Problem Statement…

Even and Odd Program in Java

In this tutorial, we are going to learn writing java program to check a given number is even or odd. For this purpose we will be using if else statement of java concept. Problem Statement…

Factorial program in Java using recursion

In this tutorial we are going to learn writing java program to calculate the Factorial of a given number using recursion. What is Recursion? Recursion is a method that defines something in terms of itself,…

Factorial Program in Java using for loop Iterative method

In this tutorial, we are going to learn java program to find the factorial of the number given as input from the user using for loop. Problem Statement For any Input numbers given by the…

Calculate Average Input taken by user

In this tutorial, we are going to learn a writing java program to find the average of numbers given as input from the user. This program is little bit different from the previous Average program,…