#include <iostream>
#include <cstdlib>
using namespace std;
char strcat(char* a, char* b){
int a_count = 0, b_count = 0, j = 0;
while(a[a_count] != '\0'){ //подсчет количества элементов
a_count++;
}
while(b[b_count] != '\0'){ //подсчет количества элементов
b_count++;
for(int i = a_count ; i < a_count + b_count; i++){ //объединение
a[i] = b[j];
j++;
cout << "Concatenate first and second string: " << a << endl; //вывод
int main()
{
char f_str[256], s_str[256], copy_f_str[256]; //объявление массивов и копии первого массива
int i = 0; //счетчик количества элементов
cout << "Enter the first string: "; cin >> f_str; //ввод первого массива
cout << "Enter the second string: "; cin >> s_str; cout << endl; // ввод второго массива
while(f_str[i] != '\0'){ //подсчет количества элементов и присвоение в массив copy_f_str
copy_f_str[i] = f_str[i];
i++;
strcat(f_str,s_str); //вызов функции объединения
cout << "\nThe first string: " << copy_f_str << endl; //вывод первоначальной строки
system("pause"); // остановка консоли
int n, m;
cout << "Rows: "; cin >> n;
cout << "Columns: "; cin >> m;
int a[n][m];
int all_sum = 0;
float average;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << "Element[" << i << "][" << j << "] = "; cin >> a[i][j];
cout << "\nShow massiv" << endl;
cout << a[i][j] << " ";
cout << endl;
all_sum += a[i][j];
average = all_sum / m;
cout << "Average " << i+1 << " row: " << average << endl;
system("pause");
#include <iostream>
#include <cstdlib>
using namespace std;
char strcat(char* a, char* b){
int a_count = 0, b_count = 0, j = 0;
while(a[a_count] != '\0'){ //подсчет количества элементов
a_count++;
}
while(b[b_count] != '\0'){ //подсчет количества элементов
b_count++;
}
for(int i = a_count ; i < a_count + b_count; i++){ //объединение
a[i] = b[j];
j++;
}
cout << "Concatenate first and second string: " << a << endl; //вывод
}
int main()
{
char f_str[256], s_str[256], copy_f_str[256]; //объявление массивов и копии первого массива
int i = 0; //счетчик количества элементов
cout << "Enter the first string: "; cin >> f_str; //ввод первого массива
cout << "Enter the second string: "; cin >> s_str; cout << endl; // ввод второго массива
while(f_str[i] != '\0'){ //подсчет количества элементов и присвоение в массив copy_f_str
copy_f_str[i] = f_str[i];
i++;
}
strcat(f_str,s_str); //вызов функции объединения
strcat(f_str,s_str); //вызов функции объединения
cout << "\nThe first string: " << copy_f_str << endl; //вывод первоначальной строки
system("pause"); // остановка консоли
}
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int n, m;
cout << "Rows: "; cin >> n;
cout << "Columns: "; cin >> m;
int a[n][m];
int all_sum = 0;
float average;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << "Element[" << i << "][" << j << "] = "; cin >> a[i][j];
}
}
cout << "\nShow massiv" << endl;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << a[i][j] << " ";
}
cout << endl;
}
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
all_sum += a[i][j];
}
average = all_sum / m;
cout << "Average " << i+1 << " row: " << average << endl;
}
system("pause");
}