using System;
class Program {
static void Main(string[] args) {
Console.WriteLine("Введіть перше слово:");
string word1 = Console.ReadLine();
Console.WriteLine("Введіть друге слово:");
string word2 = Console.ReadLine();
foreach (char c in word1) {
if (word2.Contains(c.ToString())) {
Console.WriteLine($"Літера {c} входить в друге слово.");
} else {
Console.WriteLine($"Літера {c} не входить в друге слово.");
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
using System;
class Program {
static void Main(string[] args) {
Console.WriteLine("Введіть перше слово:");
string word1 = Console.ReadLine();
Console.WriteLine("Введіть друге слово:");
string word2 = Console.ReadLine();
foreach (char c in word1) {
if (word2.Contains(c.ToString())) {
Console.WriteLine($"Літера {c} входить в друге слово.");
} else {
Console.WriteLine($"Літера {c} не входить в друге слово.");
}
}
}
}