Ad Code

Java code for adding two numbers.

Easiest Java code for the addition of two integer values 

 

public class Main( ){

 public static void main(String[] args)
  {
    int x=40;
    int y=50;
    System.out.println(x + y);
  }
}

Post a Comment

0 Comments

Ad Code