C语言 Visual Studio代码属性控制台不允许错误

kuarbcqp  于 2023-04-11  发布在  其他
关注(0)|答案(2)|浏览(538)

我是一个编程新手,我正在做一本书中的一些问题。我被这个关于三角形面积的问题卡住了。“属性控制台不允许”。这是因为数学。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"
        }
    ]
}
ecfdbz9o

ecfdbz9o1#

替换

"console": "externalTerminal"

"externalConsole": true

这个版本的自动生成的launch.json似乎不支持“console”属性。不过,这确实可以帮我摆脱警告消息。

kwvwclae

kwvwclae2#

如果所有选项都不起作用,请尝试"terminal": "external"

相关问题