-
Notifications
You must be signed in to change notification settings - Fork 0
/
lessonArray.cxx
73 lines (66 loc) · 1.2 KB
/
lessonArray.cxx
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <iostream>
#include <conio.h>
#include <windows.h>
using namespace std;
void LagayKo(int x, int y)
{
COORD axis;
axis.X = x;
axis.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), axis);
}
int main()
{
int i;
char ans, val;
LagayKo(5, 2);
cout << "-------------------------------------------------------";
LagayKo(5, 3);
cout << "| | | | |";
LagayKo(5, 4);
cout << "-------------------------------------------------------";
LagayKo(5, 5);
cout << " 1 2 3 4";
do
{
// system("CLS");
LagayKo(5, 7);
cout << "Enter index no. : ";
cin >> i;
if (i > 3)
{
LagayKo(5, 9);
cout << "Stack Overflow";
}
else if (i < 0)
{
LagayKo(5, 9);
cout << "Stack Underflow";
}
else
{
LagayKo(5, 8);
cout << "Enter a value : ";
cin >> val;
switch (i)
{
case 0:
LagayKo(14, 3);
break;
case 1:
LagayKo(30, 3);
break;
case 2:
LagayKo(45, 3);
break;
case 3:
LagayKo(61, 3);
break;
}
cout << val;
}
LagayKo(5, 10);
cout << "Try Again y/n : ";
ans = getch();
} while (ans == 'y' | ans == 'y');
}