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
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