Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using std::cin;
- using std::cout;
- struct MyVector{
- /* paste your code here */
- };
- int size(int) {
- /* paste your code here */
- }
- void read(MyVector&, int) {
- /* paste your code here */
- }
- void print(MyVector&) {
- /* paste your code here */
- }
- void move(MyVector&, MyVector&) {
- /* paste your code here */
- }
- int main() {
- /* paste your code here */
- print(/*название переменной 1*/);
- print(/*название переменной 2*/);
- del(/*название переменной 1*/);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement