函数版本

This commit is contained in:
2025-11-26 21:03:28 +08:00
commit 23f05f47ea
7 changed files with 333 additions and 0 deletions

17
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**", // 工作区所有子目录
"/usr/include/**", // 系统头文件路径
"/usr/local/include/**"
],
"defines": [],
"cStandard": "c17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}

7
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"C_Cpp.default.compilerPath": "/usr/bin/g++-14",
"files.associations": {
"stdio.h": "c"
},
"commentTranslate.targetLanguage": "en"
}