Welcome to 1024 Festival!
The Beginning of blog
今天是1024程序节,我的博客之旅从这里开始啦!
There some code pages
C语言
// Today is 1024 Day!
#include <stdio.h>
#include <string.h>
int main()
{
char str[20] = "今天是什么节日";
int day_num = 1024;
sprintf(str,"今天是%d节",day_num);
return 0;
}
Python
''' Today is 1024 Day! '''
print("Today is 1024 Day!")
''' 不得不说 Python 在语法可用性上还是可以的 '''