我是一个编程新手,我正在做一本书中的一些问题。我被这个关于三角形面积的问题卡住了。“属性控制台不允许”。这是因为数学。h?因为同样的代码在online-gdb上完全可用。
以下是lauch.json的内容
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "gcc - Build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"console": "externalTerminal",
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "C/C++: gcc build active file",
"miDebuggerPath": "/usr/bin/gdb"
}
]
}
2条答案
按热度按时间ecfdbz9o1#
替换
与
这个版本的自动生成的launch.json似乎不支持“console”属性。不过,这确实可以帮我摆脱警告消息。
kwvwclae2#
如果所有选项都不起作用,请尝试
"terminal": "external"