fork download
  1. #include <iostream>
  2. #include <fstream>
  3.  
  4. struct Date {
  5. int day, month, year;
  6. };
  7.  
  8. int cmp(const Date& a, const Date& b) {
  9. if (a.year != b.year) {
  10. return a.year < b.year ? -1 : 1;
  11. } else if (a.month != b.month) {
  12. return a.month < b.month ? -1 : 1;
  13. } else if (a.day != b.day) {
  14. return a.day < b.day ? -1 : 1;
  15. }
  16. return 0;
  17. }
  18.  
  19. int EnterOption() {
  20. std::cout << "Choose 2 options:\n";
  21. std::cout << "1. Save an array of dates to binary file\n";
  22. std::cout << "2. Load the array of dates from binary file\n";
  23. std::cout << "Enter option index: ";
  24. int option;
  25. std::cin >> option;
  26. return option;
  27. }
  28.  
  29. void saveDatesToBinFile() {
  30. int n;
  31. std::cout << "Enter n: ";
  32. std::cin >> n;
  33. Date* dates = new Date[n]();
  34. std::cout << "Enter days line by line (dd mm yyyy):\n";
  35. for (int i = 0; i < n; ++i) {
  36. std::cin >> dates[i].day >> dates[i].month >> dates[i].year;
  37. }
  38.  
  39. std::ofstream fout("input.bin", std::ios::binary);
  40. fout.write((char*)&n, sizeof(int));
  41. fout.write((char*)dates, sizeof(Date)*n);
  42. fout.close();
  43. }
  44.  
  45. Date loadDatesFromBinFileAndFindNewest() {
  46. std::ifstream fin("input.bin", std::ios::binary);
  47. int n;
  48. fin.read((char*)&n, sizeof(int));
  49. Date* dates = new Date[n]();
  50. fin.read((char*)dates, sizeof(Date)*n);
  51.  
  52. int id = -1;
  53. for (int i = 0; i < n; ++i) {
  54. if (id == -1 || cmp(dates[id], dates[i])) {
  55. id = i;
  56. }
  57. }
  58.  
  59. return id == -1 ? Date{-1,-1,-1} : dates[id];
  60. }
  61.  
  62. int main() {
  63. int option;
  64. int failFlag = false;
  65. do {
  66. option = EnterOption();
  67. if (option == 1) {
  68. saveDatesToBinFile();
  69. } else if (option == 2) {
  70. Date newest = loadDatesFromBinFileAndFindNewest();
  71. if (newest.day == -1) {
  72. std::cout << "There is no date in data file\n";
  73. } else {
  74. std::cout << "The newest date is: ";
  75. std::cout << newest.day << "/" << newest.month << "/" << newest.year << '\n';
  76. }
  77. } else {
  78. std::cout << "Invalid Option!!\n";
  79. failFlag = true;
  80. }
  81. } while (failFlag);
  82. return 0;
  83. }
Runtime error #stdin #stdout 0.01s 5496KB
stdin
Standard input is empty
stdout
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array of dates to binary file
2. Load the array of dates from binary file
Enter option index: Invalid Option!!
Choose 2 options