diff --git a/C++/FirstProgram/.vscode/launch.json b/C++/FirstProgram/.vscode/launch.json new file mode 100644 index 0000000..9833637 --- /dev/null +++ b/C++/FirstProgram/.vscode/launch.json @@ -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 + } + ] +} \ No newline at end of file diff --git a/C++/FirstProgram/main.cpp b/C++/FirstProgram/main.cpp new file mode 100644 index 0000000..a47b101 --- /dev/null +++ b/C++/FirstProgram/main.cpp @@ -0,0 +1,9 @@ +#include +using namespace std; + +int main() { + for (int i = 0; i < 10; i++) { + cout << i; + } + return 0; +} diff --git a/C++/FirstProgram/main.exe b/C++/FirstProgram/main.exe new file mode 100644 index 0000000..c3072df Binary files /dev/null and b/C++/FirstProgram/main.exe differ