Using System;
namespace Application1{ class Program { static bool EndsWith4(int value) { return value % 10 == 4; }
static void Main(string[] args) { int value; string s; do { Console.Write("Число: "); s = Console.ReadLine(); } while (!Int32.TryParse(s, out value)); Console.WriteLine(EndsWith4(value) ? "Оканчивается на 4" : "Не оканчивается на 4"); } }}