Write a Java program that takes two numbers and display the product of two numbers

Introduction

In this demo I have used NetBeans IDE 8.2 for debugging purpose. But you can use any java programming language compiler as per your availability..

import java.util.Scanner;
 
public class Javaexcercise{
 
 public static void main(String[] args) {
  Scanner in = new Scanner(System.in);
 
  System.out.print("Input 1st number: ");
  int number1 = in.nextInt();
 
  System.out.print("Input 2nd number: ");
  int number2 = in.nextInt();
 
  System.out.println("Product of two numbers: "+ number1 + " x " + number2 + " = " + number1 * number2);
 }
 
}

Result

Write a Java program that takes two numbers and display the product of two numbers
Write a Java program that takes two numbers and display the product of two numbers

Leave a Comment