Computer Science, asked by shalini683, 11 months ago

Write a program java program given in pic



Please answer it very fast ​

Attachments:

Answers

Answered by vinaykumarprajapati7
1

Answer:

import java.util.Scanner;

 

class AddNumbers

{

  public static void main(String args[])

  {

     int x, y, z;

 

     System.out.println("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 the integers = " + z);

  }

}

Explanation:

Similar questions