Math, asked by subadibhoomi, 3 months ago

Write a program to enter a number, calculate and print the quotient and remainder after dividing by 5 ? The answer should be in Java language​

Answers

Answered by skshabanabegum554
0

Answer:

Program to find Quotient And Remainder in Java

The remainder is the integer left over after dividing one integer by another. The quotient is the quantity produced by the division of two numbers.

For example,

(7/2) = 3

In the above expression 7 is divided by 2, so the quotient is 3 and the remainder is 1.

Approach: Divide the dividend by the divisor using / operator. Both dividend and divisor can be of any type except string, the result will also be computed accordingly. Get the remainder using % operator.

Similar questions