Grupo
Introducción a C#
Objectivo
El objetivo de este ejercicio es escribir un programa que calcule la suma de 12 y 13 y luego muestre el resultado en pantalla. Esto te ayudará a comprender el manejo de números y la salida básica en C#.
Escribe un programa en C# para mostrar el resultado de sumar 12 y 13 en pantalla.
Ejemplo de ejercicio en C#
Mostrar código C#
// This program calculates the sum of 12 and 13 and displays the result
using System;
namespace SimpleAddition
{
class Program
{
// The Main method is where the program starts executing
static void Main(string[] args)
{
// Declare two variables and assign values 12 and 13
int number1 = 12;
int number2 = 13;
// Calculate the sum of the two numbers
int sum = number1 + number2;
// Print the result to the console
Console.WriteLine("The result of adding {0} and {1} is: {2}", number1, number2, sum);
// 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 adding 12 and 13 is: 25
Código de ejemplo copiado
Comparte este ejercicio de C#