Programa En C# Para Guardar Frases En Un Archivo De Texto

Este programa solicitará al usuario que introduzca varias oraciones. Cada oración se almacenará en un archivo de texto llamado "sentences.txt". El programa solicitará nuevas oraciones hasta que el usuario simplemente presione Enter sin escribir nada. Una vez que el usuario termine de introducir las oraciones, el programa las guardará en el archivo y le notificará.



Grupo

Manejo de archivos en C#

Objectivo

1. Solicite al usuario que introduzca una oración.
2. Si la oración no está vacía, guárdela en un archivo de texto llamado "sentences.txt".
3. Continúe solicitando oraciones al usuario hasta que presione Intro sin escribir nada.
4. Después de recopilar todas las oraciones, escríbalas en el archivo y muestre un mensaje confirmando que los datos se guardaron.

Cree un programa que solicite al usuario varias oraciones (hasta que simplemente presione Intro) y guárdelas en un archivo de texto llamado "sentences.txt".

Ejemplo de ejercicio en C#

 Copiar código C#
using System;
using System.IO;

class Program
{
    static void Main()
    {
        // Define the file path where sentences will be stored
        string filePath = "sentences.txt";

        // Open the file to write the sentences
        using (StreamWriter writer = new StreamWriter(filePath))
        {
            string sentence;
            
            // Loop until the user presses Enter without typing anything
            while (true)
            {
                // Prompt the user to enter a sentence
                Console.WriteLine("Enter a sentence (or press Enter to finish): ");
                sentence = Console.ReadLine();

                // Check if the sentence is empty, if so, break out of the loop
                if (string.IsNullOrEmpty(sentence))
                {
                    break;
                }

                // Write the sentence to the text file
                writer.WriteLine(sentence);
            }
        }

        // Notify the user that the sentences have been saved
        Console.WriteLine("Sentences have been saved to 'sentences.txt'.");
    }
}

 Output

//Code Output:
Enter a sentence (or press Enter to finish): Hello, how are you?
Enter a sentence (or press Enter to finish): I am learning C#.
Enter a sentence (or press Enter to finish): This is fun!
Enter a sentence (or press Enter to finish): 
Sentences have been saved to 'sentences.txt'.

//Contents of "sentences.txt"
Hello, how are you?
I am learning C#.
This is fun!

Comparte este ejercicio de C#

Practica más ejercicios C# de Manejo de archivos en C#

¡Explora nuestro conjunto de ejercicios de práctica de C#! Diseñados específicamente para principiantes, estos ejercicios te ayudarán a desarrollar una sólida comprensión de los fundamentos de C#. Desde variables y tipos de datos hasta estructuras de control y funciones simples, cada ejercicio está diseñado para desafiarte gradualmente a medida que adquieres confianza en la programación en C#..