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,…

Calculate Average of Integer Array

In this tutorial, we are going to learn a writing java program to find the average of given numbers. In this program basically, we will not take any user input. We have an integer array…

Perfect number program

We will learn how to write a program in Java to check whether a certain number is perfect or not. How will this Java program behave? The Java program for perfect numbers is written below….

Add two numbers without addition operator

We will learn to write a program to add two numbers without using the addition operator in Java. How will this Java program behave? This program will take two numbers as input. After performing some…