Category Archives: Basic Java Programs

Java Simple Calculator Program Using Switch

Java Simple Calculator Program Using Switch statement – We will write a simple Java calculator program. This  program will start by taking input from the user – two numbers and one operator. The operator will be from basic four operations like addition, subtraction, multiplication and division (+, – , * , / ). Source Code… Read More »

Loading

Counting Vowels in String Java Program

Topic: Counting Vowels in String Java, Counting Vowels in User Supplied String Java Program This topic covers – How to count the number of vowels in a give string using a Java Program. Source Code: import java.util.Scanner; public class CountingVowels { public static void main(String args[]){ int count = 0; System.out.println(“Enter a sentence :”); Scanner… Read More »

Loading

Java Palindrome String Check

Task: Write down a Java String Program to check for Palindrome. The Source Code of Java Program Check for Palindrome import java.util.Scanner; /** * * @author www.EasyCodeBook.com */ public class StringPalindrome { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print(“Enter a String to check for Palindrome: “); String s1=input.nextLine(); String s2=””;… Read More »

Loading

Java Day Number to Name switch Program

Task: Java Day Number to Name switch Program Java Program – The Use of Switch Statement through practical Java programming- Input a day number from the user Display Day Name. Source Code – Java Day Number to Name switch Program /* * Java Program – The Use of Switch Statement * Input a day number… Read More »

Loading

Write and Execute Java Addition Program

Task: Write and Execute Java Addition Program. This Java Programming Tutorial will provide and explain the source code of a basic addition program in Java. The program will input two numbers from the user at run time. The Java program will calculate the sum of these two numbbers and will display the answer of addition.… Read More »

Loading

Java Program Area of Triangle by Three Sides

Task: Write a Java Program Area of Triangle by Three Sides. The Source Code of Java Program Area of Triangle by Three Sides /* * Write a Java program to find the area of a triangle when lengths of three sides are given. */ package trianglearea; import java.util.Scanner; /** * @author www.EasyCodebook.com */ public class… Read More »

Loading

Java Program to Calculate Area of Circle

Task: Java Program to Calculate Area of Circle What is the formula for calculating Area of Circle? The required formula for calculating area of circle is: area = π . r2 Where r is the radius of the circle and π  is a mathematical constant with fixed value 3.1415. We should declare a constant for pi… Read More »

Loading