blob: 2a4cd836cb23d3f28da263be29b08b6467244a3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// CST116-Lab0-Lopez-Bonilla.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
//Using statements: Cout and Endl
using std::cout;
using std::endl;
int main()
{
//main program
//Hello world statement with endl
cout << "Hello World!" << endl <<endl;
//Introduction statement
cout << "My name is Anibal and I am a software engineering student at Oregon Tech." << endl << endl;
//Github username information.
cout << "My Github username is BuzzerBeaterClutch" << endl;
}
|