Упражнения C # Sharp: печать всех уникальных элементов массива
C # Sharp Array: упражнение 6 с решением
Напишите программу на C # Sharp для печати всех уникальных элементов в массиве.
Пример решения : -
C # острый код:
using System;
public class Exercise6
{
public static void Main()
{
int n,ctr=0;
int[] arr1 = new int[100];
int i, j, k;
Console.Write("\n\nPrint all unique elements of an array:\n");
Console.Write("------------------------------------------\n");
Console.Write("Input the number of elements to be stored in the array :");
n = Convert.ToInt32(Console.ReadLine());
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());
}
/*Checking duplicate elements in the array */
Console.Write("\nThe unique elements found in the array are : \n");
for(i=0; i<n; i++)
{
ctr=0;
/*Check duplicate bifore the current position and
increase counter by 1 if found.*/
for(j=0; j<i-1; j++)
{
/*Increment the counter when the seaarch value is duplicate.*/
if(arr1[i]==arr1[j])
{
ctr++;
}
}
/*Check duplicate after the current position and
increase counter by 1 if found.*/
for(k=i+1; k<n; k++)
{
/*Increment the counter when the seaarch value is duplicate.*/
if(arr1[i]==arr1[k])
{
ctr++;
}
}
/*Print the value of the current position of the array as unique value
when counter remain contains its initial value.*/
if(ctr==0)
{
Console.Write("{0} ",arr1[i]);
}
}
Console.Write("\n\n");
}
}
Пример вывода:
Распечатать все уникальные элементы массива: ------------------------------------------ Введите количество элементов, которые будут сохранены в массиве: 2 Введите 2 элемента в массиве: стихия - 0: 2 стихия - 1: 4 Уникальные элементы, найденные в массиве: 2 4
Блок - схема:
Редактор кода C # Sharp:
Внесите свой код и комментарии через Disqus.
Предыдущий: Напишите программу на C # Sharp для подсчета общего количества повторяющихся элементов в массиве.
Далее: Напишите программу на C # Sharp для объединения двух массивов одинакового размера, отсортированных по возрастанию.
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code