写着玩 A+>B=>c

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);
            
           
        }
    }
}
posted @ 2016-07-26 19:08  applekingghfhfhbr  阅读(141)  评论(0编辑  收藏  举报