Java Program to calculate Power using POW() method

In this tutorial we will learn writing Java Program to calculate Power of integer using POW() method. POW() method in Java  java.lang.Math.pow() In java, pow() method takes two parameter as an input and return the calculated…

Calculate Power Without using POW method in Java

In this tutorial, we are going to learn java program to calculate the power of a given number. To calculate the power, user will give the base number and the exponent number. We will calculate…

Java Program to calculate square of number

In this tutorial, we will learn writing Java program to calculate the square of a given number. Our program will take a number as an input and will return the square of that number as…

Java Program to Calculate Cube of Number

In this tutorial, we are going to learn writing java program to calculate the cube of a given number. Our program will take a number and will return the cube of that number as an…

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…