Grupo
Gestión Dinámica de Memoria en C#
Objectivo
1. Leer las líneas de un archivo de texto de entrada.
2. Almacenar las líneas en una estructura de datos.
3. Invertir el orden de las líneas almacenadas.
4. Escribir las líneas invertidas en un archivo de texto de salida.
En este ejercicio, deberá crear un programa que lea de un archivo de texto y lo almacene en otro archivo de texto invirtiendo el orden de las líneas. Este ejercicio le permitirá practicar la manipulación de archivos de texto en C# y trabajar con la lectura y escritura de datos eficientes.
Para este ejercicio, se le proporcionará un archivo de texto de entrada con el siguiente formato:
ayer el Real Madrid ganó contra el Barcelona FC
Después de procesar el archivo, deberá crear un archivo de salida con el mismo contenido, pero con las líneas en orden inverso. De esta manera, el archivo de salida tendrá el siguiente formato:
ayer el Real Madrid ganó contra el Barcelona FC
Este ejercicio es útil para comprender cómo leer y escribir archivos en C#, así como cómo trabajar con operaciones básicas de manipulación de cadenas y archivos en el sistema.
Ejemplo de ejercicio en C#
Mostrar código C#
using System;
using System.IO; // Import the namespace for file handling
class Program
{
static void Main()
{
// Define the input and output file paths
string inputFilePath = "input.txt";
string outputFilePath = "output.txt";
// Check if the input file exists before proceeding
if (File.Exists(inputFilePath))
{
// Read all lines from the input file
string[] lines = File.ReadAllLines(inputFilePath);
// Reverse the order of the lines
Array.Reverse(lines);
// Write the reversed lines into the output file
File.WriteAllLines(outputFilePath, lines);
// Inform the user that the process is complete
Console.WriteLine("The file has been processed successfully.");
}
else
{
// Display an error message if the input file does not exist
Console.WriteLine("Error: The input file does not exist.");
}
}
}
Output
//Code Output:
The file has been processed successfully.
//Contents of output.txt after execution:
Barcelona FC
won against
yesterday Real Madrid
Código de ejemplo copiado
Comparte este ejercicio de C#