using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication6
{
class Program
{
static void Main(string[] args)
{
string s = getAsp(2);
Console.WriteLine(s);
Console.ReadKey();
}
public static string getAsp(int id)
{
if (id > 28)
{
Console.WriteLine("值太大啦");
return null;
}
string[] array = new string[] { "A", "B", "C", "D", "E", "F", "G", "H", "i", "J", "K", "M", "L", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "AA", "AB" };
string str = null;
for (int i = 0; i < array.Length -(array.Length-id); i++) {
str += array[i]+"=>";
}
return str.Substring(0,str.Length-2);
}
}
}