Computer Science, asked by ritikasrivastava2020, 6 months ago

Write a program in Java to input two decimal numbers. Find the sum and product of those two numbers and display the numbers and the sum and product in rounded off form.​

Answers

Answered by DEV00798
1

Answer:

Explanation:

public class Main

{

 static int x = 25;

 static int y = 5;

public static void main(String[] args)

 {

  System.out.println(x*y);

  }

}

Similar questions