Computer Science, asked by dheerajshaik, 1 month ago

input and output functions in c. write a program to find the product of two numbers.please help. ​

Answers

Answered by priyapriyas247
0

Answer:

import java.util.Scanner;

public class MultiplicationOfTwoNumbers {

public static void main(String args[]){

Scanner sc = new Scanner(System.in);

System.out.println("Enter the value of the first number ::");

int a = sc.nextInt();

System.out.println("Enter the value of the first number ::");

int b = sc.nextInt();

int result = a*b;

System.out.println("Product of the given two numbers is ::"+result);

}

}

Similar questions