diff options
| author | Kai <[email protected]> | 2022-10-05 17:29:31 -0700 |
|---|---|---|
| committer | Kai <[email protected]> | 2022-10-05 17:29:31 -0700 |
| commit | f02e5519050e6bdc2824f3a643b7cbc679d11b92 (patch) | |
| tree | 45f8404dd06d775c6504bcd9623e6984367c2a48 /CST116-BlankConsole | |
| parent | How to puch (diff) | |
| download | cst116-lab0-cobrakai2-f02e5519050e6bdc2824f3a643b7cbc679d11b92.tar.xz cst116-lab0-cobrakai2-f02e5519050e6bdc2824f3a643b7cbc679d11b92.zip | |
Last commit was a multitude of changes that I made to the project.
Diffstat (limited to 'CST116-BlankConsole')
| -rw-r--r-- | CST116-BlankConsole/CST 116 How to Push | 4 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST 116 Kai Hello world! | 5 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST 116 Lab0 Hello World! Pseudo code | 4 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 9 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.vcxproj | 1 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.vcxproj.user | 4 |
6 files changed, 22 insertions, 5 deletions
diff --git a/CST116-BlankConsole/CST 116 How to Push b/CST116-BlankConsole/CST 116 How to Push new file mode 100644 index 0000000..a636eb9 --- /dev/null +++ b/CST116-BlankConsole/CST 116 How to Push @@ -0,0 +1,4 @@ +Go to the solution explorer +At the bottom of the solution explorer window click on the Git Changes window +Add a Comment to signify what you just did +Hit the up arrow with a flat bottom to push any thing youve recently done.
\ No newline at end of file diff --git a/CST116-BlankConsole/CST 116 Kai Hello world! b/CST116-BlankConsole/CST 116 Kai Hello world! new file mode 100644 index 0000000..0c74a09 --- /dev/null +++ b/CST116-BlankConsole/CST 116 Kai Hello world! @@ -0,0 +1,5 @@ +Hello World!Hi my Github Name is Cobra Kai a play on my last name. + +C:\Users\ernes\Source\Repos\cst116-lab0-CobraKai2\CST116-BlankConsole\x64\Debug\CST116-Lab 0 Kai.exe (process 14060) exited with code 0. +To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops. +Press any key to close this window . . .
\ No newline at end of file diff --git a/CST116-BlankConsole/CST 116 Lab0 Hello World! Pseudo code b/CST116-BlankConsole/CST 116 Lab0 Hello World! Pseudo code new file mode 100644 index 0000000..f4bd21e --- /dev/null +++ b/CST116-BlankConsole/CST 116 Lab0 Hello World! Pseudo code @@ -0,0 +1,4 @@ +cout displays whats currently in the console +that displays hello world! +cout displays Hi my Github name is Cobra Kai becuase its a play on my name. +endl ends what the console is displaying.
\ No newline at end of file diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..ad14995 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,18 @@ // CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
+//
+//Ernest Kai CST 116 Lab 0 Debugging
//
#include <iostream>
+using std::cout;
+using std::endl;
+using std::cin;
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!";
+ cout << "Hi my Github Name is Cobra Kai a play on my last name." << endl;
+
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
diff --git a/CST116-BlankConsole/CST116-BlankConsole.vcxproj b/CST116-BlankConsole/CST116-BlankConsole.vcxproj index a0056fb..15e2531 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj +++ b/CST116-BlankConsole/CST116-BlankConsole.vcxproj @@ -24,6 +24,7 @@ <ProjectGuid>{369d37de-a099-4925-8283-6b7bf55736f9}</ProjectGuid>
<RootNamespace>CST116BlankConsole</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
+ <ProjectName>CST116-Lab 0 Kai</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
diff --git a/CST116-BlankConsole/CST116-BlankConsole.vcxproj.user b/CST116-BlankConsole/CST116-BlankConsole.vcxproj.user deleted file mode 100644 index 0f14913..0000000 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj.user +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup />
-</Project>
\ No newline at end of file |