关于我
#include<cstdio>
#include<string>
using namespace std;
int main(){
string name="LynxCatTheThird",good_at="C++",hobby[2]={"编程","van"},wip[2]={"一些科幻作品","CSP-J"};
int age=14;
printf("我叫 %s。",name.c_str());// 好像是个废话
printf("我 %d 岁了。",age);// 英语作文后遗症
printf("对 %s 略知一二。",good_at.c_str());
printf("喜欢 %s 和 %s 。",hobby[0].c_str(),hobby[1].c_str());
printf("正在为 %s 和 %s 努力。",wip[0].c_str(),wip[1].c_str());
return 114514; // LOL
}
使用 ParticleX 主题,感谢 @Argvchs(个人博客地址:https://argvchs.github.io)