Advertisement
kiraventom

1laba.h

May 22nd, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #pragma once
  2. #include <string>
  3. using namespace std;
  4.  
  5. void NextBlock();
  6. void StartScreen();
  7. void StartMenu();
  8. int** AllocateMemory(int);
  9. void InputFromFile();
  10. void CreateArray(string);
  11. string CheckFilePath();
  12. bool isDataOkay(string);
  13. void InputFromKeyboard();
  14. void InputRandom();
  15. void RotateArray(int**, int);
  16. void ShowArray(int**, int);
  17. //void FreeMemory(int**);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement