Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class PruebaDoWhile
- {
- static void Main()
- {
- do
- {
- Console.WriteLine ("Seleccione opción del menú: ");
- Console.WriteLine ("1. Descargar vídeo");
- Console.WriteLine ("2. Eliminar vídeo");
- Console.WriteLine ("3. Editar vídeo");
- Console.WriteLine ("4. Subir vídeo");
- Console.WriteLine ("5. Salir del programa");
- int opcion = Convert.ToInt32( Console.ReadLine() );
- } while ( opcion != 5 );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement