Tech Study

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

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

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more