diff options
| author | Musa Ahmed <[email protected]> | 2022-09-29 15:02:24 -0700 |
|---|---|---|
| committer | Musa Ahmed <[email protected]> | 2022-09-29 15:02:24 -0700 |
| commit | 842a0f04d334b9201f4f7db96f9725f7108d677f (patch) | |
| tree | 0686937cf8640d0599147abfa70ec0c2169314c9 /CST116-BlankConsole | |
| parent | simple change (diff) | |
| download | cst116-lab0-m005a-842a0f04d334b9201f4f7db96f9725f7108d677f.tar.xz cst116-lab0-m005a-842a0f04d334b9201f4f7db96f9725f7108d677f.zip | |
finished
Diffstat (limited to 'CST116-BlankConsole')
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 9 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.vcxproj | 1 |
2 files changed, 8 insertions, 2 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..49023f6 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,16 @@ // CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
-//
+//Name: Musa, Course: CST116, Lab #0, Lab topics: Understand how to use the IDE and GitHub,and work with repositories
+
#include <iostream>
+using std::cout;
+using std::endl;
+
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
+ cout << "My name is Musa and my GitHub is: M0054" << 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..7ed7a15 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-Lab0-Ahmed</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|