This file contains hidden or 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 <string> | |
| #include <iomanip> | |
| #include <vector> | |
| #include <Windows.h> | |
| using namespace std; | |
| const float pi = 3.14159274; |
This file contains hidden or 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
| #define arraySize 16 // размер массива | |
| #define newARM false // пересчитывать ср. арифм. каждый раз после изменения массива | |
| #define MAX_newARM 20 // максимальное кол-во итераций пересчёта | |
| #include <iostream> | |
| #include <string> | |
| #include <Windows.h> | |
| using namespace std; |