fork download
  1. #include <iostream>
  2. #include <fstream>
  3.  
  4. int EnterOption() {
  5. std::cout << "Choose 2 options:\n";
  6. std::cout << "1. Save an array to binary file\n";
  7. std::cout << "2. Load the array from binary file\n";
  8. std::cout << "Enter option index: ";
  9. int option;
  10. std::cin >> option;
  11. return option;
  12. }
  13.  
  14. void saveArrayToBinFile() {
  15. int n;
  16. std::cout << "Enter n: ";
  17. std::cin >> n;
  18. int* arr = new int[n]();
  19. std::cout << "Enter an array: ";
  20. for (int i = 0; i < n; ++i) {
  21. std::cin >> arr[i];
  22. }
  23.  
  24. std::ofstream fout("input.bin", std::ios::binary);
  25. fout.write((char*)&n, sizeof(int));
  26. fout.write((char*)arr, sizeof(int)*n);
  27. fout.close();
  28. }
  29.  
  30. int loadArrayFromBinFileAndFindMedian() {
  31. std::ifstream fin("input.bin", std::ios::binary);
  32. int n;
  33. fin.read((char*)&n, sizeof(int));
  34. int* arr = new int[n]();
  35. fin.read((char*)arr, sizeof(int)*n);
  36.  
  37. for (int i = 0; i < n; ++i) {
  38. for (int j = i+1; j < n; ++j) {
  39. if (arr[i] > arr[j]) {
  40. std::swap(arr[i], arr[j]);
  41. }
  42. }
  43. }
  44.  
  45. return arr[(n-1)/2];
  46. }
  47.  
  48. int main() {
  49. int option;
  50. int failFlag = false;
  51. do {
  52. option = EnterOption();
  53. if (option == 1) {
  54. saveArrayToBinFile();
  55. } else if (option == 2) {
  56. int med = loadArrayFromBinFileAndFindMedian();
  57. std::cout << "The median of the array is: ";
  58. std::cout << med << '\n';
  59. } else {
  60. std::cout << "Invalid Option!!\n";
  61. failFlag = true;
  62. }
  63. } while (failFlag);
  64. return 0;
  65. }
Runtime error #stdin #stdout 0.01s 5476KB
stdin
Standard input is empty
stdout
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. Save an array to binary file
2. Load the array from binary file
Enter option index: Invalid Option!!
Choose 2 options:
1. S