add solution for lab07

This commit is contained in:
2025-03-26 12:59:54 -04:00
parent eaa3021d47
commit 48d8b8fcfd
7 changed files with 148 additions and 0 deletions

14
.vscode/launch.json vendored
View File

@@ -104,6 +104,20 @@
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"preLaunchTask": "C/C++: g++ build active file"
},
{
"name": "lab07",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [
"input.txt"
],
"cwd": "${fileDirname}",
"environment": [],
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"preLaunchTask": "C/C++: g++ build single active file"
}
]
}