Найти минимум из положительных элементов вектора, расположенных правее первого элемента, равного нулю - C#

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

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

Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace _2
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. string s;
  13. double min = 1000000;
  14. Console.WriteLine("Qty of elements");
  15. s = Console.ReadLine();
  16. int n = int.Parse(s);
  17. int d = n;
  18. double[] a = new double[n];
  19. Console.WriteLine("Enter the number: ");
  20. for (int i = 0; i < a.Length; i++)
  21. {
  22. if (double.TryParse(Console.ReadLine(), out a[i]) != true)
  23. {
  24. Console.WriteLine("Enter correct number");
  25. }
  26. else
  27. {
  28. if (a[i] == 0 && d == n)
  29. { d = i; }
  30. {
  31. for (i = 0; i < d; i++)
  32. if (a[i] < min) min = a[i];
  33. }
  34. }
  35. }
  36. Console.WriteLine ("минимальный элемент = ",min);
  37. }
  38. }
  39. }
Что я делаю не так?
Переделал вот так
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace _2
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. string s;
  13. int min = 1000000;
  14. Console.WriteLine("Qty of elements");
  15. s = Console.ReadLine();
  16. int n = int.Parse(s);
  17. int d = n;
  18. int[] a = new int[n];
  19. Console.WriteLine("Enter the number: ");
  20. for (int i = 0; i < a.Length; i++)
  21. {
  22. if (int.TryParse(Console.ReadLine(), out a[i]) != true)
  23. {
  24. Console.WriteLine("Enter correct number");
  25. }
  26. else
  27. {
  28. if (a[i] == 0)
  29. continue;
  30. if (a[i] > 0 && a[i] < min)
  31. min = a[i];
  32. }
  33. }
  34. Console.WriteLine ("минимальный элемент = \t\n", min);
  35. }
  36. }
  37. }

Решение задачи: «Найти минимум из положительных элементов вектора, расположенных правее первого элемента, равного нулю»

textual
Листинг программы
  1. using System;
  2.  
  3. namespace _2
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int[] a = { 1, 4, 7, 6, 0, 3, 8, -5, 3, 0, 3, 5, 4 };
  10.             int firstZeroIndex = Array.IndexOf(a, 0);
  11.             if(firstZeroIndex < 0)
  12.             {
  13.                 Console.WriteLine("Нет нулей!");
  14.                 return;
  15.             }
  16.             int minIndex = firstZeroIndex + 1;
  17.             for (int i = minIndex+1; i < a.Length; i++)
  18.             {
  19.                 if (a[i] < a[minIndex] & a[i] > 0)
  20.                     minIndex = i;
  21.             }
  22.             Console.WriteLine("Минимальное после первого нуля: " + a[minIndex]);
  23.         }
  24.     }
  25. }

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


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

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

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

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

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

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