Simple Division in C#

In this exercise, you will write a basic C# program that performs a simple division operation. The program will divide 24 by 5 and display the result. This exercise will help you understand how to perform basic arithmetic operations such as division in C#. Additionally, you'll learn how to handle floating-point numbers and output the result to the console. It's a useful exercise to familiarize yourself with the syntax for division and how to format the output in C#.



Group

Getting Started with C# Programming

Objective

The objective of this exercise is to write a program that divides 24 by 5, then prints the result on the screen. This will help you understand how to handle numbers and perform division in C#.

Write a C# program to print the result of dividing 24 by 5 on the screen.

Example C# Exercise

 Copy C# Code
// This program divides 24 by 5 and displays the result
using System;

namespace SimpleDivision
{
    class Program
    {
        // The Main method is where the program execution begins
        static void Main(string[] args)
        {
            // Declare two variables for the numbers
            int number1 = 24;
            int number2 = 5;

            // Perform the division, casting one number to a float to get a decimal result
            float result = (float)number1 / number2;

            // Print the result to the console
            Console.WriteLine("The result of dividing {0} by {1} is: {2}", number1, number2, result);

            // Wait for the user to press a key before closing the console window
            Console.ReadKey(); // This keeps the console window open until a key is pressed
        }
    }
}

 Output

The result of dividing 24 by 5 is: 4.8

Share this C# Exercise

More C# Practice Exercises of Getting Started with C# Programming

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#.

  • Basic Arithmetic Operations in C#

    In this exercise, you will create a C# program that evaluates and displays the results of several mathematical operations. These operations involve the use of basic arithmetic oper...

  • Multiplying Two User-Entered Numbers in C#

    In this exercise, you will create a simple C# program that takes two numbers as input from the user, multiplies them, and then displays the result. This exercise will help you prac...

  • Multiplying Three Numbers with User Input in C#

    In this exercise, you will write a C# program that asks the user to enter three numbers and displays their multiplication. This exercise helps you practice using formatted output w...

  • Performing Basic Arithmetic Operations in C#

    In this exercise, you will write a C# program that takes two numbers as input from the user and performs various arithmetic operations on them. The program will display the sum, di...

  • Generating a Multiplication Table in C#

    In this exercise, you will create a C# program that prompts the user to enter a number and then displays its multiplication table from 1 to 10. This exercise will help you understa...

  • Calculating the Average of Four Numbers in C#

    In this exercise, you will create a C# program that prompts the user to enter four numbers and then calculates their average. This exercise is designed to strengthen your understan...