кодесурса
«C #

Упражнения C # Sharp: Найти второй по величине элемент в массиве

script1adsense2code
script1adsense3code

C # Sharp Array: Упражнение-16 с решением

Напишите программу на C # Sharp, чтобы найти второй по величине элемент в массиве.

«C #

Пример решения : -

C # острый код:

using System;  
public class Exercise16  
{  
    public static void Main() 
  {
    int n,i,j=0,lrg,lrg2nd;
  	int[] arr1 = new int[50];
  
       Console.Write("\n\nFind the second largest element in an array :\n");
       Console.Write("-----------------------------------------\n");  
  
       Console.Write("Input the size of array : ");
	   n = Convert.ToInt32(Console.ReadLine()); 	   
    /* Stored values into the array*/
       Console.Write("Input {0} elements in the array :\n",n);
       for(i=0;i<n;i++)
            {
	      Console.Write("element - {0} : ",i);
		  arr1[i] = Convert.ToInt32(Console.ReadLine()); 		  
	    }
/* find location of the largest element in the array */		
   lrg=0;
  for(i=0;i<n;i++)
  {
      if(lrg<arr1[i])
	  {
           lrg=arr1[i];
           j = i;
      }
  }
/* ignore the largest element and find the 2nd largest element in the array */		
   lrg2nd=0;
  for(i=0;i<n;i++)
  {
     if(i==j)
        {
          i++;  /* ignoring the largest element */
          i--;
        }
      else
        {
           if(lrg2nd<arr1[i])
	         {
               lrg2nd=arr1[i];
             }
        }
  }
  Console.Write("The Second largest element in the array is :  {0} \n\n", lrg2nd);
}
}

Пример вывода:

 Найдите второй по величине элемент в массиве:                                                                 
-----------------------------------------                                                                     
Введите размер массива: 5                                                                                   
Введите 5 элементов в массиве:                                                                               
стихия - 0: 2                                                                                               
стихия - 1: 4                                                                                               
стихия - 2: 6                                                                                               
стихия - 3: 8                                                                                               
стихия - 4: 10                                                                                              
Второй по величине элемент в массиве: 8 

Блок - схема:

«Блок-схема:

Редактор кода C # Sharp:

Внесите свой код и комментарии через Disqus.

Предыдущий: Напишите программу на C # Sharp для удаления элемента в нужной позиции из массива.
Далее: Напишите программу на C # Sharp, чтобы найти второй наименьший элемент в массиве.

Каков уровень сложности этого упражнения?

Новый контент: Composer: менеджер зависимостей для PHP , R программирования


script1adsense4code
script1adsense5code
disqus2code
script1adsense6code
script1adsense7code
script1adsense8code
buysellads2code