diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..394a2a58 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,29 @@ +{ + "tasks": [ + { + "type": "cppbuild", + "label": "C/C++: clang.exe build active file", + "command": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\Llvm\\x64\\bin\\clang.exe", + "args": [ + "-fcolor-diagnostics", + "-fansi-escape-codes", + "-g", + "${file}", + "-o", + "${fileDirname}\\${fileBasenameNoExtension}.exe" + ], + "options": { + "cwd": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\Llvm\\x64\\bin" + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "detail": "Task generated by Debugger." + } + ], + "version": "2.0.0" +} \ No newline at end of file diff --git a/main.cpp b/main.cpp index a495fc94..49ff4e1a 100644 --- a/main.cpp +++ b/main.cpp @@ -3,10 +3,11 @@ int main() { - std::cout << "THE FIRST EXAMPLE MATH DISPLAY!\n"; - std::cout << "Hi, please enter two whole numbers: "; + cout << "THE FIRST EXAMPLE MATH DISPLAY!\n"; + cout << "(Limited to whole numbers between -2,147,483,648 and 2,147,483,647)\n"; + cout << "Hi, please enter two whole numbers: "; - int x,y; + int32_t x,y; std::cin >> x >> y; std::cout << "Addition: " << x + y << std::endl; diff --git a/main.ilk b/main.ilk new file mode 100644 index 00000000..9580d8c6 Binary files /dev/null and b/main.ilk differ diff --git a/main.pdb b/main.pdb new file mode 100644 index 00000000..cfb20131 Binary files /dev/null and b/main.pdb differ