Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 526 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 526 Bytes

The sysyf compiler

Notice

请根据需求自行添加.gitignore文件。不要上传无关文件(比如.vscode配置文件)。

Please add .gitignore by yourself.

请尽量统一代码风格,比如

//函数注释写在上面,函数名尽量小写,中间用'_'隔开
int f_g_h(){

}
//两个函数中间空1~2行

int main(){
    //1条或多条语句的注释写在上面
    int a;
    int b;

    int c;//变量注释写在后面

    if (1) {

    }
    else if (2) {

    }
    else{

    }

}