Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <stack>
- #include <cmath>
- #include <ctime>
- using namespace std;
- int main()
- {
- // матрица А
- const int n = 20;
- int a[n][n];
- for (int i = 0; i < n; i++)
- {
- for (int j = 0; j < n; j++)
- {
- if (i == j) {
- a[i][j] = 100;
- }
- else {
- a[i][j] = 1 + i - j;
- }
- }
- }
- // точное значение b
- int b[n];
- for (int i = 0; i < n; i++)
- {
- b[i] = 1;
- }
- // матрица, куда закладывается ответ x
- int x[n];
- //Вывод элементов (проверка)
- for (int i = 0; i < n; i++)
- {
- for (int j = 0; j < n; j++)
- {
- cout << a[i][j] << " ";
- }
- cout << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement