Grupo
Introducción a C#
Objectivo
Cree un programa en C# que muestre el resultado de las siguientes operaciones:
-1 + 3 * 5
(24 + 5) % 7
15 + -4 * 6 / 11
2 + 10 / 6 * 1 - 7 % 2
Ejemplo de ejercicio en C#
Mostrar código C#
// This program calculates and displays the results of various arithmetic operations
using System;
namespace ArithmeticOperations
{
class Program
{
// The Main method is where the program execution begins
static void Main(string[] args)
{
// Define variables for the operations
int result1 = -1 + 3 * 5;
int result2 = (24 + 5) % 7;
float result3 = 15 + -4 * 6 / 11f; // Use 'f' for floating-point division
int result4 = 2 + 10 / 6 * 1 - 7 % 2;
// Display the results of the operations
Console.WriteLine("The result of -1 + 3 * 5 is: " + result1);
Console.WriteLine("The result of (24 + 5) % 7 is: " + result2);
Console.WriteLine("The result of 15 + -4 * 6 / 11 is: " + result3);
Console.WriteLine("The result of 2 + 10 / 6 * 1 - 7 % 2 is: " + result4);
// 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 -1 + 3 * 5 is: 14
The result of (24 + 5) % 7 is: 5
The result of 15 + -4 * 6 / 11 is: 14.0
The result of 2 + 10 / 6 * 1 - 7 % 2 is: 2
Código de ejemplo copiado
Comparte este ejercicio de C#