forked from SamNickGammer/TheGroceryStore_Amity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatm.cpp
More file actions
40 lines (36 loc) · 1.07 KB
/
atm.cpp
File metadata and controls
40 lines (36 loc) · 1.07 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
29
30
31
32
33
34
35
36
37
38
39
40
/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <iostream>
using namespace std;
int main()
{
char g, r, y, f, ff, i, n, d, o, r2;
cout << "Cheer:gryffindor";
cout << "Give me a g,";
cin >> g;
cout << "Give me a r,";
cin >> r;
cout << "Give me a y,";
cin >> y;
cout << "Give me a f,";
cin >> f;
cout << "Give me a f,";
cin >> ff;
cout << "Give me a i,";
cin >> i;
cout << "Give me a n,";
cin >> n;
cout << "Give me a d,";
cin >> d;
cout << "Give me a o,";
cin >> o;
cout << "Give me a r,";
cin >> r2;
cout << "What does it spell?";
cout << g << r << y << f << ff << i << n << d << o << r2;
return 0;
}