Java Program to check given Character is digit or not

Check Given Character Is Digit Or Not in java

In this tutorial we are going to check if the character is Digit ( 0-9) and write the java program for the same. There are some logic behind characters which are mentioned below: For the any input character our program will check either character is vowel or consonant. For example Program 1: Java Program to … Read more

Java Program to check character is Vowel or Consonant

Check Character Is Vowel Or Consonant in java

In this tutorial, we are going to learn writing java program to check if the character is a vowel ( a, e, i, o, u) or any other alphabet other than vowels i.e. consonants. For any input character, we have to check whether a character is a vowel or consonant. For example Check Given Character … Read more

Calculate Simple Interest Program in Java

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 principle, rate of interest and time, and return simple interest.For example, If the user input the principal value = 1900, … Read more

Convert Fahrenheit into Celsius Program in Java

Fahrenheit To Celsius Conversion 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 will use this conversion formula in our java program for this conversion. Our Fahrenheit to Celsius conversion program behavior? Java … Read more

Convert Celsius into Fahrenheit Program in Java

Celsius To Fahrenheit Conversion Program in java

In this tutorial, We are going to learn a python 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 have to Just apply this conversion formula in java programming. How our Program will behave? • Java program will take … Read more

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

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 the h.c.f. of given numbers. For example, for the inputs of the two numbers 4 and 6. Our program will … Read more

Java Program to Calculate Square root of Number

Calculate Square root of Number

In this tutorial, we are going to learn writing java program to calculate the square root of a given number.Our Program will take a number from the users as an input, and will return the square root of that number as output. What is Square root of Number? Square root can be defined as a factor … Read more