SlideShare a Scribd company logo
SAMPLE JAVA PROGRAMS
Comparing Two Numbers This is a very simple example of Java that teaches you the method of comparing two numbers and finding out the greater one .
First of all, name a class "Comparing" and take two variables in this class (ie, a & b). Here we have taken a=5 and b=10, Now we have to find out whether a=b, a>b or b>a.  To find out this apply if and else condition one by one.  Now apply the condition "if (a=b)", if this satisfies then print both are equal. If this doesn't satisfy, then check whether a>b by applying the "else if" condition and print the message "a is greater than b”.  Again this doesn't satisfy then 'else' condition as shown in the example will show that b is greater than a. 
code of the program: class   Comparing{    public static void  main(String[] args) {      int  a=5, b=10;      if  (a == b){        System.out.println("Both are equal");     }      else if (a>b){         System.out.println("a is greater than b");        }      else {          System.out.println("b is greater than a");       }   } }
How to compile & run  Compiling: javac Comparing.java Run: java Comparing Out put: b is greater than a
Program to list all even numbers between two numbers This is a program for listing out all the even numbers between two numbers.
For this first create a class named  AllEvenNum  under the java.io package. Now use the try/catch exception to avoid any kind of input error. After this create a buffer class in which all the input data are stored and modified. Then give message as to &quot;Enter number&quot; in the  System  method.   As we have to find out all the even numbers between 1 and the input number, define an integer variable 'num'.  Now apply  ParseInt  method that parses the string character into decimal integer.  Apply  for  loop in which define an integer i=1 and i<=  num also with an increment operator. Then apply the  if  condition that i/2=0 i.e. to find even numbers which are divided by the integer 2. In the end apply the catch exception. 
code of the program: import  java.io.*; class  AllEvenNum{    public static void  main(String[] args) {      try {         BufferedReader br1 =  new  BufferedReader ( new  InputStreamReader(  System.in));         System.out.println(&quot;Enter number : &quot;);          int  num = Integer.parseInt(br1.readLine());         System.out.println(&quot;Even Numbers:&quot;);          for  ( int  i=1;i <=num ; i++){         if (i%2==0 ){            System.out.print(i+&quot;,&quot;);       }          }     }      catch (Exception e){   e.printStackTrace();   }  } }
How to compile & run  Compiling: javac AllEvenNum.java Run: java AllEvenNum Note: This program cannot be run in jdeveloper
calculate area and perimeter of a circle This is a program to  calculate the area and perimeter of a circle
First of all name a class as &quot;CircleArea&quot; under  java  I/O package and define and integer r=1o, which is the radius of the circle. Now use  try  exception to handle errors and other exceptional events.  Now create the Math class in which all the mathematical functions are defined. This Math class can be imported from the java.lang.* package.  Formula for calculate area   area = java.lang.Math.PI*r*r; Formula for calculate area   perimeter =2*java.lang.Math.PI*r ; Before ending the program use the  Catch  mechanism that detects and catch user input errors.
code of the program: import  java.io.*; class  CircleArea{ public static void main(String[] args){ int r=10; try { double area = java.lang.Math.PI*r*r;   System.out.println(&quot;Area of Circle : &quot;+area); double  perimeter =2*java.lang.Math.PI*r ; System.out.println(&quot;Perimeter of Circle : &quot;+perimeter); } catch(Exception e){ System.out.println(&quot;Error : &quot;+e); }  } }
How to compile & run  Compiling: javac CircleArea.java Run: java CircleArea Out put: Area of Circle : 314.1592653589793 Perimeter of Circle : 62.83185307179586
Calculate Factorial Of A Given Number Here is a program to calculate factorial of a  given number. First of all define a class &quot;Factorial&quot; under the Java I/O package.  Define 'a' as an integer with value 10. Take an integer variable as fact=1.   Now applying for loop with conditions as integer i=1(intializer),  i<=a and i++ as increment operator. So output result will be like fact=fact*i.  Print the result.
code of the program: import java.io.*;  class  Factorial { public static void main(String[] args) { try{ int a= 10; int fact= 1; System.out.println(&quot;Factorial of &quot; +a+ &quot;:&quot;); for (int i= 1; i<=a; i++){   fact=fact*i;   } System.out.println(fact); } catch (Exception e){   e.printStackTrace();   } } }
How to compile & run  Compiling: javac Factorial.java Run: java Factorial Out put:   Factorial of 10: 3628800
calculating area and perimeter of a rectangle Here is a program for calculating the area and  perimeter of a rectangle. 
First of all create a class named  RecArea  under Java.io package. Now define two integer variable ' length'  and ' width‘  with values 10 and 50.  Calculate area and Perimeter by applying the formulas area = length*width; perimiter = 2*(length+width); Print result in the console
import java.io.*;  class  RecArea { public static void main(String[] args)  { int length=10; int width=50; try{  int area = length*width; System.out.println(&quot;Area of Rectangle : &quot;+area); int perimiter = 2*(length+width); System.out.println(&quot;Perimeter: &quot; + perimiter); } catch(Exception e){System.out.println(&quot;Error : &quot;+e);} } }
How to compile & run  Compiling: javac  RecArea .java Run: java  RecArea Out put:   Area of Rectangle : 500   Perimeter: 120
program to construct a triangle with the ‘*’ Here is the program for constructing a shape of  triangle by using '*'.
Make a class named ‘Triangle‘. Define an integer ' a ‘ with value 5. Now apply the  for  loop and define an integer  'i'  and it should be either less than or equal to the integer &quot;a“. for (int i=1; i<a;i++ ) Again define another integer type variable &quot; j &quot; in another for loop. for (int j=1; j<=i;j++ ) Here in the second for loop &quot;j&quot; the number of times we have to print *(You can take any other object instead of *) . 
import java.io.*;  Class Triangle{  public static void main(String[] args) { try{  int a= 5; for (int i=1; i<a;i++ ){ for (int j=1; j<=i;j++ ){   System.out.print(&quot;*&quot;); } System.out.println(&quot;&quot;); } } catch(Exception e){} } }
How to compile & run  Compiling: javac Triangle.java Run: java Triangle Out put:   *   **   ***   ****
Listing out leap years between certain period Here is the program for finding and listing out  the leap years between two years. In the  following example we have to find out the leap  years between 1990 and 2010.
First define the two years under a class &quot;leapyears&quot;. Let i = 2010 and n=1990. Now with the help of for loop method initialize the year as n=1990 and n<=i. Also apply the increment statement in the loop as we have to check one by one.   As we know a leap year is divisible by 4, define an integer l=n%4.  So if 'n' is divisible by 4 or l=0, then the particular year can be a leap year. For checking this, apply the  if  statement and if this satisfies then, the year will be a leap year. For listing out each year write &quot;+n&quot; in the System.out.println. 
import java.io.*;  Class Leapyears {  public static void main(String[] args) {  { int i=2010; int n; for (n=1990; n<=i ; n++) { int l=n%4; if (l==0){   System.out.println(&quot;leap year: &quot;+n);   } } } } }
How to compile & run  Compiling: javac Leapyears.java Run: java Leapyears Out put:   leap year: 1992   leap year: 1996 leap year: 2000 leap year: 2004 leap year: 2008

More Related Content

What's hot (20)

PPT
Exception Handling in JAVA
SURIT DATTA
 
PPT
Simple Java Programs
AravindSankaran
 
PPTX
Database connectivity in python
baabtra.com - No. 1 supplier of quality freshers
 
PPT
1.Role lexical Analyzer
Radhakrishnan Chinnusamy
 
PPTX
Java Stack Data Structure.pptx
vishal choudhary
 
PPTX
Servlets
ZainabNoorGul
 
PPTX
Process state in OS
Khushboo Jain
 
PPTX
Abstract class in c++
Sujan Mia
 
PPTX
Advance Java Programming(CM5I) Event handling
Payal Dungarwal
 
PPTX
Types of grammer - TOC
AbhayDhupar
 
PPTX
Constants in java
Manojkumar C
 
PDF
VTU Design and Analysis of Algorithms(DAA) Lab Manual by Nithin, VVCE, Mysuru...
Nithin Kumar,VVCE, Mysuru
 
PPT
Java J2EE
Sandeep Rawat
 
PDF
OS - Process Concepts
Mukesh Chinta
 
PDF
Java I/O
Jussi Pohjolainen
 
PPTX
Constructor in java
Pavith Gunasekara
 
PPTX
Lexical analysis - Compiler Design
Muhammed Afsal Villan
 
PPTX
I/O Streams
Ravi Chythanya
 
PPTX
Inheritance In Java
Manish Sahu
 
Exception Handling in JAVA
SURIT DATTA
 
Simple Java Programs
AravindSankaran
 
Database connectivity in python
baabtra.com - No. 1 supplier of quality freshers
 
1.Role lexical Analyzer
Radhakrishnan Chinnusamy
 
Java Stack Data Structure.pptx
vishal choudhary
 
Servlets
ZainabNoorGul
 
Process state in OS
Khushboo Jain
 
Abstract class in c++
Sujan Mia
 
Advance Java Programming(CM5I) Event handling
Payal Dungarwal
 
Types of grammer - TOC
AbhayDhupar
 
Constants in java
Manojkumar C
 
VTU Design and Analysis of Algorithms(DAA) Lab Manual by Nithin, VVCE, Mysuru...
Nithin Kumar,VVCE, Mysuru
 
Java J2EE
Sandeep Rawat
 
OS - Process Concepts
Mukesh Chinta
 
Constructor in java
Pavith Gunasekara
 
Lexical analysis - Compiler Design
Muhammed Afsal Villan
 
I/O Streams
Ravi Chythanya
 
Inheritance In Java
Manish Sahu
 

Viewers also liked (16)

PPS
Web Server in dream
guestc1a699
 
ODP
Cristina Y Paula
paulachavescorrea
 
PPS
Web Server in dream
guestc1a699
 
ODP
Travleschip
guestfc8f7b
 
PDF
Solicitud de adhesión al Beauty Cluster Barcelona - 2016
Ivan Borrego Valverde
 
PPS
Web Server in dream
guestc1a699
 
PPT
The University Transfer Process
floatingspirit
 
PDF
Digitalizace ucebnich textu v NTK
lubosbittner
 
PDF
Hranalytics goodone
Narasimhan Srinivasan
 
PPTX
Esport i Medi Ambient: El medi ambient com a motor de l’ecoinnovació en el mo...
Olympic Studies Centre, CEO-UAB
 
PPT
Key Skills Alcohol Powerpoint
cat
 
PPTX
Ppt tupac amaru ii
Patriciavll
 
PDF
Como transformar servidores em cientistas de dados e diminuir a distância ent...
Rommel Carvalho
 
PDF
Economic Overview of the Sport, Social, Urban and Environmental Impacts and L...
Olympic Studies Centre, CEO-UAB
 
DOCX
IDENTIFY FACTORS FOR LOWER HIERARCHICAL EMPLOYEE TURNOVER
Aranga Wijesooriya
 
Web Server in dream
guestc1a699
 
Cristina Y Paula
paulachavescorrea
 
Web Server in dream
guestc1a699
 
Travleschip
guestfc8f7b
 
Solicitud de adhesión al Beauty Cluster Barcelona - 2016
Ivan Borrego Valverde
 
Web Server in dream
guestc1a699
 
The University Transfer Process
floatingspirit
 
Digitalizace ucebnich textu v NTK
lubosbittner
 
Hranalytics goodone
Narasimhan Srinivasan
 
Esport i Medi Ambient: El medi ambient com a motor de l’ecoinnovació en el mo...
Olympic Studies Centre, CEO-UAB
 
Key Skills Alcohol Powerpoint
cat
 
Ppt tupac amaru ii
Patriciavll
 
Como transformar servidores em cientistas de dados e diminuir a distância ent...
Rommel Carvalho
 
Economic Overview of the Sport, Social, Urban and Environmental Impacts and L...
Olympic Studies Centre, CEO-UAB
 
IDENTIFY FACTORS FOR LOWER HIERARCHICAL EMPLOYEE TURNOVER
Aranga Wijesooriya
 
Ad

Similar to Simple Java Programs (20)

PPT
Algorithms with-java-1.0
BG Java EE Course
 
PDF
Microsoft word java
Ravi Purohit
 
PDF
The sample program for above series in JAVA will be like belowimpo.pdf
rajat630669
 
PPTX
Lab01.pptx
KimVeeL
 
PPT
Ch5(loops)
Uğurcan Uzer
 
PDF
Oot practical
Vipin Rawat @ daya
 
DOCX
Programs of java
shafiq sangi
 
PPTX
Java Chapter 05 - Conditions & Loops: part 5
DanWooster1
 
PPT
How to Program
Damian T. Gordon
 
PPTX
Lab101.pptx
KimVeeL
 
DOCX
Cis 355 ilab 2 of 6
ashhadiqbal
 
PDF
merged_document_3
tori hoff
 
PDF
Java practical(baca sem v)
mehul patel
 
DOCX
Java programs
Dr.M.Karthika parthasarathy
 
PPTX
Core java
Uday Sharma
 
PPT
Java căn bản - Chapter6
Vince Vo
 
DOCX
Java Practice Set
Gaurav Dixit
 
PDF
Java_Programming_by_Example_6th_Edition.pdf
JayveeCultivo
 
PPTX
Lecture no 3
hasi071
 
PDF
Sam wd programs
Soumya Behera
 
Algorithms with-java-1.0
BG Java EE Course
 
Microsoft word java
Ravi Purohit
 
The sample program for above series in JAVA will be like belowimpo.pdf
rajat630669
 
Lab01.pptx
KimVeeL
 
Ch5(loops)
Uğurcan Uzer
 
Oot practical
Vipin Rawat @ daya
 
Programs of java
shafiq sangi
 
Java Chapter 05 - Conditions & Loops: part 5
DanWooster1
 
How to Program
Damian T. Gordon
 
Lab101.pptx
KimVeeL
 
Cis 355 ilab 2 of 6
ashhadiqbal
 
merged_document_3
tori hoff
 
Java practical(baca sem v)
mehul patel
 
Core java
Uday Sharma
 
Java căn bản - Chapter6
Vince Vo
 
Java Practice Set
Gaurav Dixit
 
Java_Programming_by_Example_6th_Edition.pdf
JayveeCultivo
 
Lecture no 3
hasi071
 
Sam wd programs
Soumya Behera
 
Ad

Simple Java Programs

  • 2. Comparing Two Numbers This is a very simple example of Java that teaches you the method of comparing two numbers and finding out the greater one .
  • 3. First of all, name a class &quot;Comparing&quot; and take two variables in this class (ie, a & b). Here we have taken a=5 and b=10, Now we have to find out whether a=b, a>b or b>a. To find out this apply if and else condition one by one. Now apply the condition &quot;if (a=b)&quot;, if this satisfies then print both are equal. If this doesn't satisfy, then check whether a>b by applying the &quot;else if&quot; condition and print the message &quot;a is greater than b”. Again this doesn't satisfy then 'else' condition as shown in the example will show that b is greater than a. 
  • 4. code of the program: class   Comparing{    public static void  main(String[] args) {      int  a=5, b=10;      if  (a == b){        System.out.println(&quot;Both are equal&quot;);     }      else if (a>b){       System.out.println(&quot;a is greater than b&quot;);      }      else {        System.out.println(&quot;b is greater than a&quot;);      }   } }
  • 5. How to compile & run Compiling: javac Comparing.java Run: java Comparing Out put: b is greater than a
  • 6. Program to list all even numbers between two numbers This is a program for listing out all the even numbers between two numbers.
  • 7. For this first create a class named AllEvenNum under the java.io package. Now use the try/catch exception to avoid any kind of input error. After this create a buffer class in which all the input data are stored and modified. Then give message as to &quot;Enter number&quot; in the System method.  As we have to find out all the even numbers between 1 and the input number, define an integer variable 'num'. Now apply ParseInt method that parses the string character into decimal integer. Apply for loop in which define an integer i=1 and i<=  num also with an increment operator. Then apply the if condition that i/2=0 i.e. to find even numbers which are divided by the integer 2. In the end apply the catch exception. 
  • 8. code of the program: import  java.io.*; class  AllEvenNum{    public static void  main(String[] args) {      try {        BufferedReader br1 =  new  BufferedReader ( new  InputStreamReader( System.in));        System.out.println(&quot;Enter number : &quot;);         int  num = Integer.parseInt(br1.readLine());        System.out.println(&quot;Even Numbers:&quot;);         for  ( int  i=1;i <=num ; i++){        if (i%2==0 ){            System.out.print(i+&quot;,&quot;);     }        }     }      catch (Exception e){ e.printStackTrace(); }  } }
  • 9. How to compile & run Compiling: javac AllEvenNum.java Run: java AllEvenNum Note: This program cannot be run in jdeveloper
  • 10. calculate area and perimeter of a circle This is a program to calculate the area and perimeter of a circle
  • 11. First of all name a class as &quot;CircleArea&quot; under java I/O package and define and integer r=1o, which is the radius of the circle. Now use try exception to handle errors and other exceptional events. Now create the Math class in which all the mathematical functions are defined. This Math class can be imported from the java.lang.* package. Formula for calculate area area = java.lang.Math.PI*r*r; Formula for calculate area perimeter =2*java.lang.Math.PI*r ; Before ending the program use the Catch mechanism that detects and catch user input errors.
  • 12. code of the program: import  java.io.*; class  CircleArea{ public static void main(String[] args){ int r=10; try { double area = java.lang.Math.PI*r*r; System.out.println(&quot;Area of Circle : &quot;+area); double perimeter =2*java.lang.Math.PI*r ; System.out.println(&quot;Perimeter of Circle : &quot;+perimeter); } catch(Exception e){ System.out.println(&quot;Error : &quot;+e); } } }
  • 13. How to compile & run Compiling: javac CircleArea.java Run: java CircleArea Out put: Area of Circle : 314.1592653589793 Perimeter of Circle : 62.83185307179586
  • 14. Calculate Factorial Of A Given Number Here is a program to calculate factorial of a given number. First of all define a class &quot;Factorial&quot; under the Java I/O package. Define 'a' as an integer with value 10. Take an integer variable as fact=1.  Now applying for loop with conditions as integer i=1(intializer),  i<=a and i++ as increment operator. So output result will be like fact=fact*i. Print the result.
  • 15. code of the program: import java.io.*; class Factorial { public static void main(String[] args) { try{ int a= 10; int fact= 1; System.out.println(&quot;Factorial of &quot; +a+ &quot;:&quot;); for (int i= 1; i<=a; i++){ fact=fact*i; } System.out.println(fact); } catch (Exception e){ e.printStackTrace(); } } }
  • 16. How to compile & run Compiling: javac Factorial.java Run: java Factorial Out put: Factorial of 10: 3628800
  • 17. calculating area and perimeter of a rectangle Here is a program for calculating the area and perimeter of a rectangle. 
  • 18. First of all create a class named RecArea under Java.io package. Now define two integer variable ' length' and ' width‘ with values 10 and 50. Calculate area and Perimeter by applying the formulas area = length*width; perimiter = 2*(length+width); Print result in the console
  • 19. import java.io.*; class RecArea { public static void main(String[] args) { int length=10; int width=50; try{ int area = length*width; System.out.println(&quot;Area of Rectangle : &quot;+area); int perimiter = 2*(length+width); System.out.println(&quot;Perimeter: &quot; + perimiter); } catch(Exception e){System.out.println(&quot;Error : &quot;+e);} } }
  • 20. How to compile & run Compiling: javac RecArea .java Run: java RecArea Out put: Area of Rectangle : 500 Perimeter: 120
  • 21. program to construct a triangle with the ‘*’ Here is the program for constructing a shape of triangle by using '*'.
  • 22. Make a class named ‘Triangle‘. Define an integer ' a ‘ with value 5. Now apply the for loop and define an integer 'i' and it should be either less than or equal to the integer &quot;a“. for (int i=1; i<a;i++ ) Again define another integer type variable &quot; j &quot; in another for loop. for (int j=1; j<=i;j++ ) Here in the second for loop &quot;j&quot; the number of times we have to print *(You can take any other object instead of *) . 
  • 23. import java.io.*; Class Triangle{ public static void main(String[] args) { try{ int a= 5; for (int i=1; i<a;i++ ){ for (int j=1; j<=i;j++ ){ System.out.print(&quot;*&quot;); } System.out.println(&quot;&quot;); } } catch(Exception e){} } }
  • 24. How to compile & run Compiling: javac Triangle.java Run: java Triangle Out put: * ** *** ****
  • 25. Listing out leap years between certain period Here is the program for finding and listing out the leap years between two years. In the following example we have to find out the leap years between 1990 and 2010.
  • 26. First define the two years under a class &quot;leapyears&quot;. Let i = 2010 and n=1990. Now with the help of for loop method initialize the year as n=1990 and n<=i. Also apply the increment statement in the loop as we have to check one by one.  As we know a leap year is divisible by 4, define an integer l=n%4. So if 'n' is divisible by 4 or l=0, then the particular year can be a leap year. For checking this, apply the if statement and if this satisfies then, the year will be a leap year. For listing out each year write &quot;+n&quot; in the System.out.println. 
  • 27. import java.io.*; Class Leapyears { public static void main(String[] args) { { int i=2010; int n; for (n=1990; n<=i ; n++) { int l=n%4; if (l==0){ System.out.println(&quot;leap year: &quot;+n); } } } } }
  • 28. How to compile & run Compiling: javac Leapyears.java Run: java Leapyears Out put: leap year: 1992 leap year: 1996 leap year: 2000 leap year: 2004 leap year: 2008