[solved]-1 Write Java Program Print Sum Addition Multiply Subtract Divide Remainder Two Numbers Tak Q39013645
1. Write a Java program to print the sum (addition),multiply, subtract, divide
and remainder of two numbers.
Take First Number: 125 and Second Number: 24.
Expected Output :
125 + 24 = 149
125 – 24 = 101
125 x 24 = 3000
125 / 24 = 5
125 mod 24 = 5
2. Write a Java program to print the area of a rectangle
Take Width = 5.5 and Height = 8.5
Expected Output:
Area = 46.75
.
Note:
• Please include Comments in your code.
Expert Answer
Answer to 1. Write a Java program to print the sum (addition), multiply, subtract, divide and remainder of two numbers. Take First… . . .
OR

