int i = 100; for (i = 100; i > 0; i--) { if (i % 3 == 0) { Console.WriteLine(i); } } Console.ReadKey();