Код:
using System;
using System.Linq;
namespace _123
{
class Program
static void Main(string[] args)
string x;
x = Console.ReadLine();
x = x.ToLower();
string[] words = x.Split(new char[] { ' ' });
string[] result = words.Distinct().ToArray();
for (int i = 0; i < result.Length; i++)
Console.WriteLine(result[i]);
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Код:
using System;
using System.Linq;
namespace _123
{
class Program
{
static void Main(string[] args)
{
string x;
x = Console.ReadLine();
x = x.ToLower();
string[] words = x.Split(new char[] { ' ' });
string[] result = words.Distinct().ToArray();
for (int i = 0; i < result.Length; i++)
{
Console.WriteLine(result[i]);
}
}
}
}