온라인저지 VScode 설정

C++[ | ]

  • 소스코드파일: a.cpp
  • 입력파일: input.txt
  • 실행단축키: Ctrl+F5
launch.json
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "(Windows) Launch",
            "type": "cppvsdbg",
            "request": "launch",
            "program": "${workspaceFolder}/a.exe",
            "args": ["<","input.txt"],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
			"environment": [],
			"externalConsole": false,
			"internalConsoleOptions": "openOnSessionStart",
            "preLaunchTask": "build a",
        }
    ]
}
tasks.json
{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build a",
            "type": "shell",
            "command": "g++",
            "args": ["-g","a.cpp"]
        }
    ]
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}