Mostrar Código
using System; public class exercise24 { public static void Main() { int n = 15; while (n >= 7) { Console.WriteLine(n); n -= 2; } } }