Calculate Simple Interest Program in Java

In this tutorial, we are going to learn writing a python program to calculate simple interest from given principal, rate of interest, and time. Problem Statement Our program takes three inputs from the user as…

Convert Fahrenheit into Celsius Program in Java

In this tutorial, we are going to learn a python program to convert Fahrenheit into Celsius. This program will be simple because we have a Fahrenheit to Celsius conversion formula for this temperature conversion. We…

Convert Celsius into Fahrenheit Program in Java

In this tutorial, We are going to learn a java program to convert Celsius into Fahrenheit. This program will be simple because we will use just a given formula of Celsius to Fahrenheit conversion. We…

Java Program to Check Given year is leap or not

In this tutorial, we are going to learn writing java program to check if the given year is a leap year or not. A Leap year comes every 4 year and the days in February…

H.C.F. or G.C.D. Of Two Number Program in Java

In this tutorial, we are going to learn writing java program to calculate the Highest Common Factor of two numbers. Our program will take two numbers as the inputs given by the user and returns…

LCM Program in Java with Explanations

In this tutorial, we are going to learn java program to calculate the least common multiple of two numbers. Our program will take two numbers as the input from the user and return the LCM…

Find Smallest among three in Java Program

In this tutorial we will learn writing java program to find the smallest number among the three given numbers. This program will be very simple. Here we are just comparing the numbers using if else…