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
Show 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