Skip to content

Instantly share code, notes, and snippets.

@piekie
piekie / .cpp
Last active May 20, 2016 19:04 — forked from kateseniva/.cpp
Частина курсової
#include <iostream>
#include <vector>
#include <math.h>
#include <iomanip>
using namespace std;
//4 1 2 3 4 2 1 2 3 3 2 -1 2 4 3 2 1
vector <vector<double>> matrix_inverse(vector <vector<double>> &matr, unsigned int n) {