R Lang

R Program to find quotient and remainder2 min read

In this program, You will learn how to find quotient and remainder in R.

R Example: How to find quotient and remainder in R




The code first reads in values for x and y from the user and stores them as strings. It then converts x and y to integers using the as.integer function.

Next, the code performs four different operations on x and y: integer division, integer division using the %/% operator, regular division, and modulo using the %% operator. It stores the results of these operations in variables q, q1, q2, and r, respectively.

Finally, the code prints the results of these operations to the console.

  • q is the result of integer division using typecasting. This means that the result of the division is converted to an integer by removing the fractional part. For example, 7/3 would be converted to 2.
  • q1 is the result of integer division using the %/% operator. This operator performs integer division and returns the integer part of the division, discarding the remainder. For example, 7 %/% 3 would return 2.
  • q2 is the result of regular division using the / operator. This operator performs division and returns the result as a floating point number. For example, 7 / 3 would return 2.3333333.
  • r is the result of the modulo operation using the %% operator. This operator returns the remainder of the division. For example, 7 %% 3 would return 1.

Leave a Comment