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#
Mostrar 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!
Código de ejemplo copiado
Comparte este ejercicio de C#