12
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
string[] meses = new string[] { "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septimbre", "Octubre", "Noviembre", "Diciembre" };
8
9
for(int x = 0; x < meses.Length; x++)
10
Console.WriteLine(meses[x].Substring(0, 3));
11
}
12
}
Cached Result