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