This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Все пояснения тут http://ru.wikipedia.org/wiki/Метод_Гаусса_—_Жордана | |
#include <iostream> | |
#include <conio.h> | |
#include <stdlib.h> | |
#include <iomanip> | |
#include "math.h" | |
using namespace std; | |
void main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> // Для функции exit() | |
#include <fstream> // Для файловых потоков | |
#include <iostream> | |
#include "ConsolCyr.h" | |
#include <string> | |
using namespace std; | |
const int lenName = 13; // max длина имени файла | |
const int lenString = 60; // Длина вспомогательного массива | |
int sumS(char *chr); //подсчет суммы кодов |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <math.h> | |
#include <iomanip> | |
#include <string> | |
using namespace std; | |
const int N=30; | |
string chr,s; | |
bool bol; |