Computer Science, asked by narinder64cav, 4 months ago

write a program in java to find of the multipulese of two number<br />​

Answers

Answered by HozaifaNazarSiddiqui
1

Answer:

import java.util.Scanner;

public class Demo {

public static void main(String[] args) {

/* This reads the input provided by user

* using keyboard

*/

Scanner scan = new Scanner(System.in);

System.out.print("Enter first number: ");

// This method reads the number provided using keyboard

int num1 = scan.nextInt();

System.out.print("Enter second number: ");

int num2 = scan.nextInt();

// Closing Scanner after the use

scan.close();

// Calculating product of two numbers

int product = num1*num2;

// Displaying the multiplication result

System.out.println("Output: "+product);

}

}

// plzz mark me as brainliest

Similar questions