Помогите создать блок-схему к коду С++. Жаю 50 баллов.
#include <iostream>
#include <vector>

using namespace std;

const int N = 4;

void printMatrix(const vector<vector<double>>& matrix) {
for (int i = 0; i < N; i++) {
for (int j = 0; j < N + 1; j++) {
cout << matrix[i][j] << "\t";
}
cout << endl;
}
}

int main() {
setlocale(LC_ALL, "RUS");
vector<vector<double>> matrix(N, vector<double>(N + 1));

cout << "Введите значение матрицы:" << endl;
for (int i = 0; i < N; i++) {
cout << "Строка " << i + 1 << ": ";
for (int j = 0; j < N; j++) {
cin >> matrix[i][j];
}
}


for (int i = 0; i < N; i++) {
double sum = 0;
for (int j = 0; j < N; j++) {
sum += matrix[i][j];
}
matrix[i][N] = sum;
}

cout << "Матрица с суммой коэффициентов предыдущей строки:" << endl;
printMatrix(matrix);


return 0;
}​
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.