Ошибка в лямбде "Not all code paths return a value in lambda expression of type" - C#

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

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

Добрый день ! При компиляции выдаётся такая ошибка: Not all code paths return a value in lambda expression of type Я не знаю, как её исправить. Помогите, пожалуйста.
Листинг программы
  1. delegate bool BoolPassword(string s1, string s2);
  2. delegate bool Captha(string s1, string s2);
Листинг программы
  1. static void Main(string[] args)
  2. {
  3. Console.Write("Enter password ");
  4. string password1 = Console.ReadLine();
  5. Console.Write("Repeat password ");
  6. string password2 = Console.ReadLine();
  7. BoolPassword bp = (s1, s2) => s1 == s2;
  8. if (bp(password1, password2))
  9. {
  10. Random rand = new Random();
  11. string resCaptha = "";
  12. for (int i = 0; i < 10; i++)
  13. resCaptha += (char)rand.Next(0, 100);
  14. Console.WriteLine("Enter code " + resCaptha);
  15. string resCode = Console.ReadLine();
  16. Captha cp = (s1, s2) => // Здесь ошибка
  17. {
  18. if (s1 == s2)
  19. Console.WriteLine("Ok");
  20. else
  21. Console.WriteLine("fail");
  22. };
  23. cp(resCaptha, resCode);
  24. }
  25. else
  26. Console.WriteLine("Fail");
  27. }

Решение задачи: «Ошибка в лямбде "Not all code paths return a value in lambda expression of type"»

textual
Листинг программы
  1. delegate bool BoolPassword(string s1, string s2);
  2. delegate bool Captha(string s1, string s2);
  3. class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         Console.Write("Enter password ");
  8.         string password1 = Console.ReadLine();
  9.         Console.Write("Repeat password ");
  10.         string password2 = Console.ReadLine();
  11.  
  12.         BoolPassword bp = (s1, s2) => s1 == s2;
  13.  
  14.         if (bp(password1, password2))
  15.         {
  16.             Random rand = new Random();
  17.  
  18.             string resCaptha = "";
  19.  
  20.             for (int i = 0; i < 10; i++)
  21.                 resCaptha += (char)rand.Next(0, 100);
  22.  
  23.             Console.WriteLine("Enter code " + resCaptha);
  24.             string resCode = Console.ReadLine();
  25.  
  26.             Captha cp = (s1, s2) => // Здесь ошибка
  27.             {
  28.                 if (s1 == s2)
  29.                 {
  30.                     Console.WriteLine("Ok");
  31.                     return true;
  32.                 }
  33.                 Console.WriteLine("fail");
  34.                 return false;
  35.             };
  36.  
  37.             cp(resCaptha, resCode);
  38.         }
  39.         else
  40.             Console.WriteLine("Fail");
  41.     }
  42. }

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


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

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

7   голосов , оценка 4.571 из 5

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

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

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