Started C++

This commit is contained in:
plane000
2018-05-02 13:00:39 +01:00
parent 090b3904b4
commit ea36004d22
3 changed files with 28 additions and 0 deletions

19
C++/FirstProgram/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
// 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": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "enter program name, for example ${workspaceFolder}/a.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true
}
]
}

View File

@@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main() {
for (int i = 0; i < 10; i++) {
cout << i;
}
return 0;
}

BIN
C++/FirstProgram/main.exe Normal file

Binary file not shown.