-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrntIntro.cpp
More file actions
28 lines (25 loc) · 1.1 KB
/
PrntIntro.cpp
File metadata and controls
28 lines (25 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
* Author : Jesus Lopez *
* Assignment : Project One Intro *
* Date : 11/5/17 *
* Class : CSC 17-A *
******************************************************************************/
#include "ProjHead.h"
void PrntIntro()
{
//Output Introduction
cout << left;
cout << "Welcome to Stock Simulator!" << endl << endl;
cout << "After making a killing selling avocado toast to Millennials, you "
"decided to venture into the stock market."
<< endl
<< "You start the game with $1,000 and your goal is to make as much "
"money as you can in 7 days by trading stocks."
<< endl
<< "Good luck, have fun!"
<< endl
<< endl
<< "Press Enter to continue.";
cin.get();
system("clear");
}