-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstl_maps.cpp
56 lines (52 loc) · 1.64 KB
/
stl_maps.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
#include<iostream>
#include<map>
#include<utility>
#include<string>
using namespace std;
int main()
{
int rows;
cout<<"Enter the number of rows of your table: "; cin>>rows;
string model_name;
double value;
int sold_items;
cout<<"Enter the table: "<<endl;
map <string,pair<double,int>> table;
for(int i=0;i<rows;i++){
cin>>model_name>>value>>sold_items;
table.insert(make_pair(model_name,make_pair(value, sold_items)));
}
int choice;
while(1){
cout<<"1.Show table: "<<endl;
cout<<"2.See total value of a particular model sold: "<<endl;
cout<<"3.Exit the interface: "<<endl;
cin>>choice;
if(choice==3){
break;
}
else if(choice==1){
cout<<"\tMODEL NAME\t\tCOST OF ONE UNIT\t\tNUMBER OF UNITS SOLD IN ONE MONTH"<<endl;
for(auto it = table.begin();it!=table.end();it++){
cout<<"\t"<<it->first<<"\t\t\t"<<it->second.first<<"\t\t\t\t"<<it->second.second<<endl;
}
cout<<"======================================================================================================================"<<endl;
}
else
{ std::string key;
cout<<"Enter the model name: ";
cin>>key;
auto it = table.begin();
for(;it!=table.end();it++){
if(it->first==key){
cout<<"Total value: "<<(it->second.first) * (it->second.second)<<" lakhs"<< endl;
break;
}
}
if(it==table.end()){
cout<<"Model not found"<<endl;
}
}
}
return 0;
}