今天突然想起以前的一张 java 合租图片梗,电话号码是代码,然后脑抽就写了个自己的唯一指定链接
static void Main()
{
string[] a = new string[] {"o","-","z","u","m","c","@",".","t","a","k","l"};
int[] b = new int[] {9,1,2,3,4,0,6,0,3,8,11,0,0,10,7,5,0,4 };
Console.Write("Email:");
for (int i = 0; i <= b.Length - 1; i++)
{
int c = b[i];
Console.Write(a[c]);
}
Console.ReadKey();
}