-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.cs
103 lines (90 loc) · 2.93 KB
/
solution.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
using System;
class OperadoresEstructurasControl
{
public static void Execute()
{
// Operadores aritméticos
int suma = 5 + 3;
int resta = 10 - 4;
int multiplicacion = 6 * 7;
double division = 20 / 4;
int modulo = 15 % 4;
Console.WriteLine("Operadores Aritméticos:");
Console.WriteLine($"Suma: {suma}");
Console.WriteLine($"Resta: {resta}");
Console.WriteLine($"Multiplicación: {multiplicacion}");
Console.WriteLine($"División: {division}");
Console.WriteLine($"Módulo: {modulo}");
// Operadores lógicos
bool and = true && false;
bool or = true || false;
bool not = !true;
Console.WriteLine("\nOperadores Lógicos:");
Console.WriteLine($"AND: {and}");
Console.WriteLine($"OR: {or}");
Console.WriteLine($"NOT: {not}");
// Operadores de comparación
bool igual = 5 == int.Parse("5"); // Conversión necesaria en C#
bool diferente = 10 != 5;
bool mayorQue = 15 > 10;
bool menorQue = 7 < 12;
Console.WriteLine("\nOperadores de Comparación:");
Console.WriteLine($"Igual (==): {igual}");
Console.WriteLine($"Diferente (!=): {diferente}");
Console.WriteLine($"Mayor Que (>): {mayorQue}");
Console.WriteLine($"Menor Que (<): {menorQue}");
// Operadores de asignación
int x = 10;
x += 5; // equivalente a x = x + 5
int y = 20;
y *= 2; // equivalente a y = y * 2
Console.WriteLine("\nOperadores de Asignación:");
Console.WriteLine($"x: {x}");
Console.WriteLine($"y: {y}");
// Operadores bitwise
int bitwiseAnd = 5 & 3; // AND
int bitwiseOr = 5 | 3; // OR
int bitwiseXor = 5 ^ 3; // XOR
int bitwiseNot = ~5; // NOT
int leftShift = 5 << 1; // Left Shift
int rightShift = 5 >> 1; // Right Shift
int zeroFillRightShift = (int)((uint)5 >> 1); // Zero-fill Right Shift
Console.WriteLine("\nOperadores Bitwise:");
Console.WriteLine($"Bitwise AND (&): {bitwiseAnd}");
Console.WriteLine($"Bitwise OR (|): {bitwiseOr}");
Console.WriteLine($"Bitwise XOR (^): {bitwiseXor}");
Console.WriteLine($"Bitwise NOT (~): {bitwiseNot}");
Console.WriteLine($"Left Shift (<<): {leftShift}");
Console.WriteLine($"Right Shift (>>): {rightShift}");
Console.WriteLine($"Zero-fill Right Shift (>>>): {zeroFillRightShift}");
// Estructuras de control
// Condicionales
int edad = 18;
if (edad >= 18)
{
Console.WriteLine("\nEres mayor de edad.");
}
else
{
Console.WriteLine("\nEres menor de edad.");
}
// Iterativas
Console.WriteLine("\nNúmeros entre 10 y 55 (pares, no 16 ni múltiplos de 3):");
for (int i = 10; i <= 55; i++)
{
if (i % 2 == 0 && i != 16 && i % 3 != 0)
{
Console.WriteLine(i);
}
}
// Excepciones
try
{
throw new Exception("Este es un ejemplo de excepción.");
}
catch (Exception ex)
{
Console.WriteLine($"\nExcepción: {ex.Message}");
}
}
}