WSL上でVSCodeを動かしているのですが、c++のRun/Debugがうまく動いてくれません。sample.cppではF5を押した後に入力をするはずなのですがそれすらも飛ばされHello Worldの出力もされません。お助けいただけると幸いです。
*F5押した後これがterminalにすぐ表示されます
![
*launch.json
json
1{ 2 "version": "0.2.0", 3 "configurations": [ 4 { 5 "name": "g++ - Build and debug active file", 6 "type": "cppdbg", 7 "request": "launch", 8 "program": "${fileDirname}/${fileBasenameNoExtension}", 9 "args": [], 10 "stopAtEntry": false, 11 "cwd": "${workspaceFolder}", 12 "environment": [], 13 "externalConsole": false, 14 "MIMode": "gdb", 15 "setupCommands": [ 16 { 17 "description": "Enable pretty-printing for gdb", 18 "text": "-enable-pretty-printing", 19 "ignoreFailures": true 20 } 21 ], 22 "preLaunchTask": "C/C++: g++ build active file", 23 "miDebuggerPath": "/usr/bin/gdb" 24 } 25 ] 26}
*task.json
json
1 2{ 3 "tasks": [ 4 { 5 "type": "shell", 6 "label": "C/C++: g++ build active file", 7 "command": "/usr/bin/g++", 8 "args": [ 9 "-g", 10 "${file}", 11 "-o", 12 "${fileDirname}/${fileBasenameNoExtension}" 13 ], 14 "options": { 15 "cwd": "usr/bin" 16 }, 17 } 18 ], 19 "version": "2.0.0" 20}
*sample.cpp
cpp
1#include <bits/stdc++.h> 2using namespace std; 3#define rep(i,n) for (int i = 0; i < (n); ++i) 4using ll = long long; 5using P = pair<int,int>; 6 7int main() { 8 int n,m; 9 cin >> n >> m; 10 11 cout << "Hello World" << endl; 12 cout << n+m << endl; 13} 14
あなたの回答
tips
プレビュー