Compare commits

...

4 Commits
main ... 12

Author SHA1 Message Date
YangMinsheng f6b91202ee 2.c 2023-10-06 14:31:41 +08:00
Glassyhamster203 0d6ca12220 test 2023-10-02 23:17:07 +08:00
Glassyhamster203 3623bde110 modified: zzs.cpp 2023-10-02 23:01:15 +08:00
Glassyhamster203 45a0648004 add zzs.cpp (some shit) 2023-10-02 23:01:06 +08:00
4 changed files with 16 additions and 7 deletions

3
.gitignore vendored
View File

@ -99,3 +99,6 @@ compile_commands.json
CTestTestfile.cmake
_deps
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/settings.json

View File

@ -1,6 +1 @@
# HFUT-Git-Training
苍穹竞技机器人队 电控组 Git学习与训练仓库
训练任务截止时间 2023.10.5
每人至少创建一个分支 提交一个自己的源代码文件,修改一个别人的源代码文件
HFUT-Git-Training

View File

@ -4,5 +4,5 @@
#include <iostream>
int main(){
printf("hello git --sjq");
//printf("hello git --sjq");
}

11
zzs.cpp Normal file
View File

@ -0,0 +1,11 @@
#include <iostream>
using namespace std;
int hello_git_zzs()
{
cout << "Hello git --zzs"
<< "\n";
return 1145;
}