Урок 11, с++, работа с массивами, добавление элементов и вставка элементов в массив.
Видео к уроку. Код к уроку. // ConsoleApplication3.cpp : Defines the entry point for the console application. // #include «stdafx.h» #include <iostream> using namespace std; void add(int value, int *product,int &count) { product[count] = value; count++; } void insert(int value, int pos,int *product, int &count) { for (int i = count — 1; i >=pos;… Читать далее »