Answers for "Write a program in Java, using the Scanner methods, to read and display the following details walk me"

2

Java scanner example

import java.util.Scanner;
public class AddTwoNumbers2 {

    public static void main(String[] args) {
        
        int num1, num2, sum;
        Scanner sc = new Scanner(System.in);
        System.out.println("Enter First Number: ");
        num1 = sc.nextInt();
        
        System.out.println("Enter Second Number: ");
        num2 = sc.nextInt();
        
        sc.close();
        sum = num1 + num2;
        System.out.println("Sum of these numbers: "+sum);
    }
}

Output:
Posted by: Guest on June-08-2020

Code answers related to "Write a program in Java, using the Scanner methods, to read and display the following details walk me"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language