Hello World

这是我第一次使用Hexo框架搭建博客!
采用的主题是ButterFly
花了我一个晚上才搭建好,可以说是把能踩的坑全都踩了一遍。
以后会在这个小破站不定期更新一些学到的新东西。
如果想联系我的话,我的邮箱是Cyderpunk2077#gmail.com

这里是我的QQ号

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@Test
public void ShowQQ() {
String Ciphertext = "1235689";
String QQ = "" +
Ciphertext.charAt(0) +
Ciphertext.charAt(3) +
Ciphertext.charAt(5) +
Ciphertext.charAt(4) +
Ciphertext.charAt(2) +
Ciphertext.charAt(5) +
Ciphertext.charAt(3) +
Ciphertext.charAt(1) +
Ciphertext.charAt(6) +
Ciphertext.charAt(4);
System.out.println(QQ);
}