Создание меню и разбиение программы - C#

Узнай цену своей работы

Формулировка задачи:

Есть программа, которая высчитывает самое длинное слово, сколько раз оно встречалось в тексте. как правильно сделать, что бы высвечивалось меню, где при нажатии на клавишу 1 мы вводим текст, при нажатии 2 выводим наш результат?
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6. namespace ConsoleApplication6
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. Console.Write("Введите путь к файлу: ");
  13. Stack<string> stack = new Stack<string>();
  14. string line = Console.ReadLine();
  15. File.WriteAllText(@"c:\temp\file.txt", line, Encoding.Default);
  16. string[] words = line.Split(new string[] {" ", ".", ",", "\r\n", "\t"}, StringSplitOptions.RemoveEmptyEntries);
  17. int maxlength = 0;
  18. for (int i = 0; i < words.Length; i++)
  19. if (maxlength < words[i].Length) maxlength = words[i].Length;
  20. for (int i = 0; i < words.Length; i++)
  21. {
  22. if (words[i].Length == maxlength && !stack.Contains(words[i])) stack.Push(words[i]);
  23. }
  24. string[] maxwords = stack.ToArray();
  25. int count;
  26. for (int i = 0; i < maxwords.Length; i++)
  27. {
  28. count = 0;
  29. foreach (string x in words)
  30. {
  31. if (x == maxwords[i]) ++count;
  32. }
  33. Console.WriteLine("{2}. Самое длинное слово: {0}\n Число вхождений: {1}", maxwords[i], count, i);
  34. }
  35. Console.ReadKey(true);
  36. }
  37. }
  38. }

Решение задачи: «Создание меню и разбиение программы»

textual
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6.  
  7. namespace ConsoleApplication7
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             while (true)
  14.             {
  15.                 uint choice;
  16.                 Console.WriteLine("Нажмите\n 1 Ввод текста\n 2 Вывод результата");
  17.                 while ((!uint.TryParse(Console.ReadLine(), out choice)) || (choice > 2))
  18.                     Console.WriteLine("Повторите ввод");
  19.  
  20.  
  21.  
  22.  
  23.                 if (choice == 1)
  24.                 {
  25.                     Console.Write("Введите текст: ");
  26.                     Stack<string> stack = new Stack<string>();
  27.                     string line = Console.ReadLine();
  28.                     File.WriteAllText(@"c:\temp\file.txt", line, Encoding.Default);
  29.  
  30.                 }
  31.  
  32.                 else if (choice == 2)
  33.                 {
  34.  
  35.  
  36.                     Stack<string> stack = new Stack<string>();
  37.                     string path = @"c:\temp\file.txt";
  38.                     string readText = File.ReadAllText(path);
  39.                     Console.WriteLine(readText);
  40.                     string[] words = readText.Split(new string[] { "...", "!", " ", ".", ",", "\r\n", "\t" }, StringSplitOptions.RemoveEmptyEntries);
  41.  
  42.                     int maxlength = 0;
  43.                     for (int i = 0; i < words.Length; i++)
  44.                         if (maxlength < words[i].Length) maxlength = words[i].Length;
  45.                     for (int i = 0; i < words.Length; i++)
  46.                     {
  47.                         if (words[i].Length == maxlength && !stack.Contains(words[i])) stack.Push(words[i]);
  48.                     }
  49.                     string[] maxwords = stack.ToArray();
  50.                     int count;
  51.                     for (int i = 0; i < maxwords.Length; i++)
  52.                     {
  53.                         count = 0;
  54.                         foreach (string x in words)
  55.                         {
  56.                             if (x == maxwords[i]) ++count;
  57.                         }
  58.                     }
  59.                     {
  60.  
  61.  
  62.  
  63.                         Console.WriteLine("{2}. Самое длинное слово: {0}\n   Число вхождений: {1}", maxwords[i], count, i);
  64.                     }
  65.  
  66.                 }
  67.  
  68.                     Console.ReadKey(true);
  69.                 }
  70.             }
  71.         }
  72.     }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

12   голосов , оценка 4 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы