Posts

Showing posts with the label Java-Program

What is the java programming language ?

Image
What is java programming language  What is the java programming language ?      Java : is a high level platform independent, object oriented and secure programming language used for to develop console based application, graphics application, web application, mobile application and gaming applications.      Java was developed by Sun Microsystems (which is now the subsidiary of Oracle) in the year 1995. James Gosling is known as the father of Java. Before Java, its name was Oak. Since Oak was already a registered company, so they was java developer team changed the name from Oak to Java. Java Program Examples class Display      {            public static void main ( String args [])          {                System . out . println ( "Welcome TO Java" );            }        }   Type...

Addition Of Two Numbers In Java

Image
Add Two Numbers in Java      Overview How to add two numbers in Java will show addition of given two numbers.      Scope of Article This article provides information about addition of two numbers in Java. Examples of different ways of summing are given. Uses the ( + )   operator to add two numbers. Let's see how we can add two numbers in Java. Method 1: Sum of two numbers      This is the simplest way to add two numbers in Java. We will initialize and declare the value in the program itself. Here no input value is taken from the user.  Example : class Main  {      public static void main (String[] args) {      int e1 , f2 , sum ;      e1 = 100 ;     // I nitialize       f2 = 200 ;      sum = e1 + f2 ; // Addition operation      System.out.println( " Addition of " +...