C# Program to find quotient and remainder
In this program, You will learn how to find quotient and remainder in C#.
2 = 10 / 5
0 = 10 % 5
Example: How to find quotient and remainder in C#.
using System;
public class Test
{
public static void Main(string[] args)
{
int x, y, q, r;
Console.Write("Enter first number:");
x = Convert.ToInt32(Console.ReadLine());
Console.Write("Enter second number:");
y = Convert.ToInt32(Console.ReadLine());
q = x / y;
r = x % y;
Console.WriteLine("Quotient is:" + q);
Console.WriteLine("Remainder is:" + r);
}
}
Output:
Enter first number:13
Enter second number:3
Quotient is:4
Remainder is:1