Division and Remainder Calculation Program in C#

This C# program is designed to ask the user for two numbers. It then performs the division of the first number by the second and displays both the result of the division and the remainder. If the user enters 0 as the second number, the program will warn the user that division by 0 is not possible. If 0 is entered as the first number, the program will display a "Bye!" message and end. This exercise helps practice conditional statements and arithmetic operations in C#.



Group

C# Flow Control Basics

Objective

Write a C# program that asks the user for two numbers and displays their division and remainder of the division. If 0 is entered as the second number, it will warn the user and end the program if 0 is entered as the first number.

Example C# Exercise

 Copy C# Code
// First and Last Name: John Doe

using System;

namespace DivisionAndRemainder
{
    class Program
    {
        static void Main(string[] args)
        {
            // Declare variables for the two numbers
            int firstNumber, secondNumber;

            // Prompt user for the first number
            Console.Write("First number? ");
            firstNumber = int.Parse(Console.ReadLine()); // Read and convert the input to integer

            // If the first number is 0, exit the program
            if (firstNumber == 0)
            {
                Console.WriteLine("Bye!"); // Print goodbye message
                return; // Exit the program
            }

            // Prompt user for the second number
            Console.Write("Second number? ");
            secondNumber = int.Parse(Console.ReadLine()); // Read and convert the input to integer

            // Check if the second number is 0 to prevent division by zero
            if (secondNumber == 0)
            {
                Console.WriteLine("Cannot divide by 0"); // Print an error message
            }
            else
            {
                // Calculate division and remainder
                int division = firstNumber / secondNumber;
                int remainder = firstNumber % secondNumber;

                // Display results
                Console.WriteLine("Division is " + division);
                Console.WriteLine("Remainder is " + remainder);
            }
        }
    }
}

 Output

//First example (valid division):
First number? 10
Second number? 2
Division is 5
Remainder is 0

//Second example (division by zero):
First number? 10
Second number? 0
Cannot divide by 0

//Third example (valid division with remainder):
First number? 10
Second number? 3
Division is 3
Remainder is 1

//Fourth example (first number is zero):
First number? 0
Bye!

Share this C# Exercise

More C# Practice Exercises of C# Flow Control Basics

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.