-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDataBase.cpp
57 lines (47 loc) · 2.04 KB
/
DataBase.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
#include <iostream>
#include <string>
#include <unordered_map>
// Function declarations
std::unordered_map<int, std::tuple<std::string, std::string, int, std::string>> getUserDatabase();
void displayUserInfo(int id, const std::unordered_map<int, std::tuple<std::string, std::string, int, std::string>> &userDatabase);
int main()
{
// Get user database (simulated database)
std::unordered_map<int, std::tuple<std::string, std::string, int, std::string>> userDatabase = getUserDatabase();
// Prompt user to enter the generated ID
int enteredID;
std::cout << "Enter the generated ID: ";
std::cin >> enteredID;
// Display user information based on the entered ID
displayUserInfo(enteredID, userDatabase);
return 0;
}
// Function to retrieve user information from the database
std::unordered_map<int, std::tuple<std::string, std::string, int, std::string>> getUserDatabase()
{
std::unordered_map<int, std::tuple<std::string, std::string, int, std::string>> userDatabase;
// Simulated user data
userDatabase[123456] = std::make_tuple("John Doe", "USA", 25, "01/15/1998");
userDatabase[789012] = std::make_tuple("Alice Smith", "Canada", 30, "05/20/1993");
userDatabase[2552] = std::make_tuple("Rayan Derradji", "Algeria", 18, "08/31/2005");
return userDatabase;
}
// Function to display user information based on the entered ID
void displayUserInfo(int id, const std::unordered_map<int, std::tuple<std::string, std::string, int, std::string>> &userDatabase)
{
auto it = userDatabase.find(id);
if (it != userDatabase.end())
{
// User found, display information
std::cout << "\nUser Information:\n";
std::cout << "Full Name: " << std::get<0>(it->second) << "\n";
std::cout << "Country: " << std::get<1>(it->second) << "\n";
std::cout << "Age: " << std::get<2>(it->second) << "\n";
std::cout << "Date of Birth: " << std::get<3>(it->second) << "\n";
}
else
{
// User not found
std::cout << "\nUser not found for the entered ID.\n";
}
}