Grupo
Introducción a C#
Objectivo
Escribe un programa en C# que muestre en pantalla el resultado de la división de los números 24 y 5.
Ejemplo de ejercicio en C#
Mostrar código C#
// 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
Código de ejemplo copiado
Comparte este ejercicio de C#