Ticker

6/recent/ticker-posts

Header Ads Widget

Responsive Advertisement

2.Program to Accept values of Two Numbers and print their Addition.




 import java.util.Scanner;


class AddNumbers

{

    public static void main(String args[])

    {

        int x, y, z;

        System.out.print("Enter two integers to calculate their sum : ");

        Scanner in = new Scanner(System.in);

        x = in.nextInt();

        y = in.nextInt();

        z = x + y;

        System.out.println("Sum of entered integers = " + z);

    }

}



Post a Comment

0 Comments