Using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace СиШарп { class Program { static void Main(string[] args) { Console.Write("Введите натуральное число: "); int C = int.Parse(Console.ReadLine()); Console.Write("A = "); int A = int.Parse(Console.ReadLine()); while (C > 0) { if (C % 10 == A) A = -1; C /= 10; } Console.WriteLine((A > -1?"Верно":"Не верно")); Console.ReadKey(); } } }
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace СиШарп
{
class Program
{
static void Main(string[] args)
{
Console.Write("Введите натуральное число: ");
int C = int.Parse(Console.ReadLine());
Console.Write("A = ");
int A = int.Parse(Console.ReadLine());
while (C > 0)
{
if (C % 10 == A) A = -1;
C /= 10;
}
Console.WriteLine((A > -1?"Верно":"Не верно"));
Console.ReadKey();
}
}
}