From 9f980d3682b9d88bcf5de990d2ac34266ba232c5 Mon Sep 17 00:00:00 2001 From: "smithbenjamin2022@gmail.com" Date: Thu, 29 Sep 2022 15:15:21 -0700 Subject: Done. Finished, even --- .gitignore | 1 + CST116-BlankConsole/CST116-BlankConsole.cpp | 20 --------------- CST116-BlankConsole/CST116-BlankConsole.vcxproj | 2 +- .../CST116-BlankConsole.vcxproj.filters | 2 +- CST116-BlankConsole/CST116-Lab0-Smith-pseudo.txt | 2 ++ CST116-BlankConsole/CST116-Lab0-Smith.cpp | 27 +++++++++++++++++++++ CST116-BlankConsole/CST116-Lab0-Smith.txt | 2 ++ CST116-BlankConsole/checklist.txt | 5 ++++ .../Debug/CST116-B.369d37de.tlog/CL.command.1.tlog | Bin 0 -> 910 bytes .../Debug/CST116-B.369d37de.tlog/CL.read.1.tlog | Bin 0 -> 19762 bytes .../Debug/CST116-B.369d37de.tlog/CL.write.1.tlog | Bin 0 -> 800 bytes .../CST116-BlankConsole.lastbuildstate | 2 ++ .../CST116-B.369d37de.tlog/link.command.1.tlog | Bin 0 -> 1692 bytes .../Debug/CST116-B.369d37de.tlog/link.read.1.tlog | Bin 0 -> 3814 bytes .../Debug/CST116-B.369d37de.tlog/link.write.1.tlog | Bin 0 -> 880 bytes .../x64/Debug/CST116-BlankConsole.exe | Bin 0 -> 68096 bytes .../x64/Debug/CST116-BlankConsole.exe.recipe | 11 +++++++++ .../x64/Debug/CST116-BlankConsole.ilk | Bin 0 -> 668280 bytes .../x64/Debug/CST116-BlankConsole.log | 2 ++ .../x64/Debug/CST116-BlankConsole.pdb | Bin 0 -> 1249280 bytes ...ST116-BlankConsole.vcxproj.FileListAbsolute.txt | 1 + .../x64/Debug/CST116-Lab0-Smith.obj | Bin 0 -> 73739 bytes CST116-BlankConsole/x64/Debug/vc143.idb | Bin 0 -> 158720 bytes CST116-BlankConsole/x64/Debug/vc143.pdb | Bin 0 -> 397312 bytes 24 files changed, 55 insertions(+), 22 deletions(-) delete mode 100644 CST116-BlankConsole/CST116-BlankConsole.cpp create mode 100644 CST116-BlankConsole/CST116-Lab0-Smith-pseudo.txt create mode 100644 CST116-BlankConsole/CST116-Lab0-Smith.cpp create mode 100644 CST116-BlankConsole/CST116-Lab0-Smith.txt create mode 100644 CST116-BlankConsole/checklist.txt create mode 100644 CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.command.1.tlog create mode 100644 CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.read.1.tlog create mode 100644 CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.write.1.tlog create mode 100644 CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CST116-BlankConsole.lastbuildstate create mode 100644 CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.command.1.tlog create mode 100644 CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.read.1.tlog create mode 100644 CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.write.1.tlog create mode 100644 CST116-BlankConsole/x64/Debug/CST116-BlankConsole.exe create mode 100644 CST116-BlankConsole/x64/Debug/CST116-BlankConsole.exe.recipe create mode 100644 CST116-BlankConsole/x64/Debug/CST116-BlankConsole.ilk create mode 100644 CST116-BlankConsole/x64/Debug/CST116-BlankConsole.log create mode 100644 CST116-BlankConsole/x64/Debug/CST116-BlankConsole.pdb create mode 100644 CST116-BlankConsole/x64/Debug/CST116-BlankConsole.vcxproj.FileListAbsolute.txt create mode 100644 CST116-BlankConsole/x64/Debug/CST116-Lab0-Smith.obj create mode 100644 CST116-BlankConsole/x64/Debug/vc143.idb create mode 100644 CST116-BlankConsole/x64/Debug/vc143.pdb diff --git a/.gitignore b/.gitignore index ce34914..20d8c9e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ ################################################################################ /CST116-BlankConsole/.vs/CST116-BlankConsole +/.vs/cst116-lab0-Smith-Benjamin/v17 diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp deleted file mode 100644 index f52b208..0000000 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ /dev/null @@ -1,20 +0,0 @@ -// CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there. -// - -#include - -int main() -{ - std::cout << "Hello World!\n"; -} - -// Run program: Ctrl + F5 or Debug > Start Without Debugging menu -// Debug program: F5 or Debug > Start Debugging menu - -// Tips for Getting Started: -// 1. Use the Solution Explorer window to add/manage files -// 2. Use the Team Explorer window to connect to source control -// 3. Use the Output window to see build output and other messages -// 4. Use the Error List window to view errors -// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project -// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file diff --git a/CST116-BlankConsole/CST116-BlankConsole.vcxproj b/CST116-BlankConsole/CST116-BlankConsole.vcxproj index a0056fb..d074f7f 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj +++ b/CST116-BlankConsole/CST116-BlankConsole.vcxproj @@ -127,7 +127,7 @@ - + diff --git a/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters b/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters index 08906aa..b464389 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters +++ b/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters @@ -15,7 +15,7 @@ - + Source Files diff --git a/CST116-BlankConsole/CST116-Lab0-Smith-pseudo.txt b/CST116-BlankConsole/CST116-Lab0-Smith-pseudo.txt new file mode 100644 index 0000000..5af8f8f --- /dev/null +++ b/CST116-BlankConsole/CST116-Lab0-Smith-pseudo.txt @@ -0,0 +1,2 @@ +1. write to the screen "Hello World!" then move down a line +2. write to the screen ""My name is Benjamin Smith. My Github it Smith-Benjamin" then move down a line \ No newline at end of file diff --git a/CST116-BlankConsole/CST116-Lab0-Smith.cpp b/CST116-BlankConsole/CST116-Lab0-Smith.cpp new file mode 100644 index 0000000..1c4d50f --- /dev/null +++ b/CST116-BlankConsole/CST116-Lab0-Smith.cpp @@ -0,0 +1,27 @@ +// CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there. +//Benjamin Smith +//CST116 +//Lab #0 +//IDE, Simple Program, GitHub + +#include + +using std::cout; +using std::endl; + +int main() +{ + cout << "Hello World!" << endl; + cout << "My name is Benjamin Smith. My Github it Smith-Benjamin" << endl; +} + +// Run program: Ctrl + F5 or Debug > Start Without Debugging menu +// Debug program: F5 or Debug > Start Debugging menu + +// Tips for Getting Started: +// 1. Use the Solution Explorer window to add/manage files +// 2. Use the Team Explorer window to connect to source control +// 3. Use the Output window to see build output and other messages +// 4. Use the Error List window to view errors +// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project +// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file diff --git a/CST116-BlankConsole/CST116-Lab0-Smith.txt b/CST116-BlankConsole/CST116-Lab0-Smith.txt new file mode 100644 index 0000000..7e737e8 --- /dev/null +++ b/CST116-BlankConsole/CST116-Lab0-Smith.txt @@ -0,0 +1,2 @@ +Hello World! +My name is Benjamin Smith. My Github it Smith-Benjamin \ No newline at end of file diff --git a/CST116-BlankConsole/checklist.txt b/CST116-BlankConsole/checklist.txt new file mode 100644 index 0000000..45b506a --- /dev/null +++ b/CST116-BlankConsole/checklist.txt @@ -0,0 +1,5 @@ +1. Go to the Git Changes tab +2. Write out a message describing the state of the pushed contents +3. Select Commit All +4. Go to the menu that shows committed items +5. Select Push \ No newline at end of file diff --git a/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.command.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.command.1.tlog new file mode 100644 index 0000000..79892ce Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.command.1.tlog differ diff --git a/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.read.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.read.1.tlog new file mode 100644 index 0000000..7ed0162 Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.read.1.tlog differ diff --git a/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.write.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.write.1.tlog new file mode 100644 index 0000000..09d1717 Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CL.write.1.tlog differ diff --git a/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CST116-BlankConsole.lastbuildstate b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CST116-BlankConsole.lastbuildstate new file mode 100644 index 0000000..e66ca0b --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/CST116-BlankConsole.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0: +Debug|x64|C:\Users\cowpi\Source\Repos\cst116-lab0-Smith-Benjamin\CST116-BlankConsole\| diff --git a/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.command.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.command.1.tlog new file mode 100644 index 0000000..d1ac3e8 Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.command.1.tlog differ diff --git a/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.read.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.read.1.tlog new file mode 100644 index 0000000..c2e2d4d Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.read.1.tlog differ diff --git a/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.write.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.write.1.tlog new file mode 100644 index 0000000..7445272 Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/CST116-B.369d37de.tlog/link.write.1.tlog differ diff --git a/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.exe b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.exe new file mode 100644 index 0000000..8c9bf3b Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.exe differ diff --git a/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.exe.recipe b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.exe.recipe new file mode 100644 index 0000000..5c94228 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.exe.recipe @@ -0,0 +1,11 @@ + + + + + C:\Users\cowpi\Source\Repos\cst116-lab0-Smith-Benjamin\CST116-BlankConsole\x64\Debug\CST116-BlankConsole.exe + + + + + + \ No newline at end of file diff --git a/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.ilk b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.ilk new file mode 100644 index 0000000..fc0f35f Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.ilk differ diff --git a/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.log b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.log new file mode 100644 index 0000000..9b16b15 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.log @@ -0,0 +1,2 @@ + CST116-Lab0-Smith.cpp + CST116-BlankConsole.vcxproj -> C:\Users\cowpi\Source\Repos\cst116-lab0-Smith-Benjamin\CST116-BlankConsole\x64\Debug\CST116-BlankConsole.exe diff --git a/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.pdb b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.pdb new file mode 100644 index 0000000..31350dc Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.pdb differ diff --git a/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.vcxproj.FileListAbsolute.txt b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.vcxproj.FileListAbsolute.txt new file mode 100644 index 0000000..a06ad73 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.vcxproj.FileListAbsolute.txt @@ -0,0 +1 @@ +C:\Users\cowpi\source\repos\cst116-lab0-Smith-Benjamin\CST116-BlankConsole\x64\Debug\CST116-BlankConsole.exe diff --git a/CST116-BlankConsole/x64/Debug/CST116-Lab0-Smith.obj b/CST116-BlankConsole/x64/Debug/CST116-Lab0-Smith.obj new file mode 100644 index 0000000..5f88967 Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/CST116-Lab0-Smith.obj differ diff --git a/CST116-BlankConsole/x64/Debug/vc143.idb b/CST116-BlankConsole/x64/Debug/vc143.idb new file mode 100644 index 0000000..45f02fb Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/vc143.idb differ diff --git a/CST116-BlankConsole/x64/Debug/vc143.pdb b/CST116-BlankConsole/x64/Debug/vc143.pdb new file mode 100644 index 0000000..be21f07 Binary files /dev/null and b/CST116-BlankConsole/x64/Debug/vc143.pdb differ -- cgit v1.2.3