Advertisement
Ilya_konstantinov

10E

Dec 7th, 2023 (edited)
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | Source Code | 0 0
  1. #include <iostream>
  2. using std::cin;
  3. using std::cout;
  4.  
  5. struct MyVector{
  6.   /* paste your code here */
  7. };
  8.  
  9. int size(int) {
  10.   /* paste your code here */
  11. }
  12.  
  13. void read(MyVector&, int) {
  14.   /* paste your code here */
  15. }
  16.  
  17. void print(MyVector&) {
  18.   /* paste your code here */
  19. }
  20.  
  21. void move(MyVector&, MyVector&) {
  22.   /* paste your code here */
  23. }
  24.  
  25. int main() {
  26.   /* paste your code here */
  27.   print(/*название переменной 1*/);
  28.   print(/*название переменной 2*/);
  29.   del(/*название переменной 1*/);
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement