Skip to content

Latest commit

 

History

History
91 lines (87 loc) · 2.85 KB

README.md

File metadata and controls

91 lines (87 loc) · 2.85 KB

PAT(Programming Ability Test)

Site
Problem Sets
More Answer

Developing Environment

Editor: Visual Studio Code

One key(F5) compile and run C/C++、Python、Java Keybinding:

[
    {"key": "f5","command": "workbench.action.tasks.runTask","args": "C/C++" },
    { "key": "f5","command": "workbench.action.tasks.runTask","args":"Python", "when":"resourceExtname == .py"},
    { "key": "f5","command": "workbench.action.tasks.runTask","args":"Java", "when":"resourceExtname == .java"},
    
    { "key": "f7","command": "workbench.action.tasks.runTask"}
]

tasks:

{
    "version": "0.1.0",
    "tasks": [
        {
            "taskName": "C/C++",
            "command": "",
            "isShellCommand": false,
            "showOutput": "always",
            "echoCommand": false,
            "suppressTaskName": false,
            "args": [
                "g++ -g -Wall \"${file}\" -o \"${file}.exe\" -std=c++14 -O2 && \"${file}.exe\" <in.txt && del /Q \"${file}.exe\""
            ],
            "problemMatcher": {
                "owner": "cpp",
                "fileLocation": [
                    "relative",
                    "/"
                ],
                "pattern": {
                    "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
                    "file": 1,
                    "line": 2,
                    "column": 3,
                    "severity": 4,
                    "message": 5
                }
            }
        },
        {
            "taskName": "Python",
            "command": "",
            "isShellCommand": true,
            "showOutput": "always",
            "echoCommand": false,
            "suppressTaskName": false,
            "args": [
                "python \"${file}\"<in.txt",
            ],
            "problemMatcher": []
        },
        {
            "taskName": "Java",
            "command": "",
            "isShellCommand": true,
            "showOutput": "always",
            "echoCommand": false,
            "suppressTaskName": false,
            "args": [
                "javac \"${file}\" && java -classpath \"${fileDirname}\" Main <in.txt && del /Q \"${fileDirname}\\Main.class\""
            ],
            "problemMatcher": {
                "owner": "java",
                "fileLocation": [
                    "relative",
                    "/"
                ],
                "pattern": {
                    "regexp": "^(.*):(\\d+):\\s+(warning|error):\\s+(.*)$",
                    "file": 1,
                    "line": 2,
                    "severity": 3,
                    "message": 4
                }
            }
        }
    ]
}