-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPROJECT I.cpp
77 lines (61 loc) · 2.59 KB
/
PROJECT I.cpp
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
74
75
76
77
#include<iostream>
#include<conio.h>
using namespace std;
int main(){
// cout<<"\t Store Management System";
// cout<<"\n\n\t 1>> SIGN UP \n\tOR Already have an account \n\t2>> LOG IN";
// cout<<"\tSIGN UP\n";
// cout<<"\n\tUserName: Ram";
// cout<<"\n\tEmail: Ram@gmail.com";
// cout<<"\n\tPhone Number : 9800123015";
// cout<<"\n\tAddress : Banepa 8, kavrepalenchwok Ganeshthan";
// cout<<"\n\tPassword : 12345";
// cout<<"\tLOG IN\n";
// cout<<"\n\tUserName : Ram";
// cout<<"\n\tPassword : *****";
// cout<<"-1----------Product Image (select)----------\n";
// cout<<"-2----------Product Image (select) ----------\n";
// cout<<"-3----------Product Image (select)----------\n";
// cout<<"-4----------Product Image (select)----------\n";
// cout<<"-5----------Product Image (select)----------\n";
// cout<<"-------------PRODUCT DETAILS-------------------\n";
//
// cout<<"-------------------------------\n";
// cout<<"| |\n";
// cout<<"| PImage |\n";
// cout<<"| |\n";
// cout<<"------------------------------|";
// cout<<"\n\tPRODUCT NAME(NIKE)";
// cout<<"\n\tPRODUCT PRICE (DISCOUNT) ";
// cout<<"\n\t>>[buy]";
// cout<<"--------------BUY-------------";
// cout<<"\n\tQuantities: << x1 >>";
// cout<<"\n\t[CONFIRM BUY]";
// cout << "**********************************************"
// "**********************************";
// cout << "\n\n\t\t\tStore Management System";
// cout << "\n\n\t\t\t\t Control Panel\n";
// cout << "\n********************************************"
// "************************************\n";
// cout << "\n\n 1. Add New Item";
// cout << "\n 2. Display Items";
// cout << "\n 3. Update Item";
// cout << "\n 4. Delete Item";
// cout << "\n 5. Exit";
// cout<<"----------------------------Add item------------------\n";
// cout << " Item Code : ";
// cout << "\n\n\t\t\t Item Name: ";
// cout << "\n\n Company Name: ";
// cout << "\n\n\t\t\t No. Of Item: ";
// cout << "----------------------Display Item------------------------\n";
// cout << " Item Code\tItem\t\tCompany\t\tNo.of Item\n";
// cout << "----------------------------------------------------------\n";
// cout << "-----------------Update Item -----------------------\n";
// cout << "\n\n New Item Name : Shoose";
// cout << "\n\n Company Name : JORDON";
// cout << "\n\n No. of Items : 10";
// cout << "--------------------Delete Item Record--------------\n";
// cout<<"\n\tItem No. : 1002";
// cout<<"\n\n ---Item Deleted Sucessfully---";
getch();
}