Division Of Two Numbers - C# Programming Exercise

This exercise is a great opportunity to practice the division operation in C#. In this program, you will learn how to divide two numbers, in this case, 24 and 5, and how to display the result on the screen. The program will print the result of the division on the console.

The instructions for the user are simple:
1. The program will divide 24 by 5.
2. The result of the division will be displayed on the screen.

This exercise will help you understand how to use the division operator in C# and how to print the result to the console using Console.WriteLine(). Additionally, you will learn how to work with both whole and fractional numbers in C#.

 Category

First contact with C# Sharp

 Exercise

Division Of Two Numbers

 Objective

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

 Write Your C# Exercise

using System; // Importing the System namespace to use Console functionalities

// Main class of the program
public class Program
{
    // Main method where the program execution begins
    static void Main()
    {
        // Declaring two integer variables with values 24 and 5
        int num1 = 24;
        int num2 = 5;

        // Calculating the result of the division of num1 by num2
        double result = (double)num1 / num2; // Casting to double for decimal result

        // Printing the result of the division to the screen
        Console.WriteLine("The result of dividing 24 by 5 is: " + result);
    }
}

 Share this C# exercise

 More C# Programming Exercises of First contact with C# Sharp

Explore our set of C# programming 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#.

  •  Multiple operations and precedences

    This exercise is perfect for learning how to perform complex arithmetic operations in C#. In this program, you will be asked to solve several mathematical operations using d...

  •  Multiply using variables

    This exercise is perfect for learning how to perform a multiplication in C# with numbers entered by the user. In this program, the user will be asked to input two numbers, a...

  •  Use of {0} and comments

    This exercise is great for learning how to interact with the user in C# and perform basic mathematical operations. In this program, the user will be asked to input three num...

  •  Several operations

    This exercise will help you understand how to perform several basic mathematical operations in C#, such as addition, subtraction, multiplication, division, and calculating t...

  •  Multiplication table

    This exercise is perfect for learning how to generate multiplication tables dynamically in C#. In this program, the user enters a number, and the program displays the multip...

  •  Average

    This exercise is a great opportunity to learn how to calculate the average of several numbers in C#. In this program, the user must enter four numbers, and the program will ...