2. Поясни, що і на яких пристроях комп'ютера відбувається з да- ними, коли користувач у якійсь програмі відкриває файл, реда- гує його, а потім зберігає.
matrix = new int*[mSize]; for (int i = 0; i < mSize; i++) matrix[i] = new int[nSize]; for (int i = 0; i < mSize; i++) for (int j = 0; j < nSize; j++) cin >> matrix[i][j];
cout << "Num. of the elements = " << NumOfElements(matrix, mSize, nSize) << endl;
system("pause"); return 0; } /* End of the 'main' function */
using namespace std;
long Factorial(int num)
{
long res = 1;
for (int i = num; i > 1; i--)
res *= i;
return res;
}
int NumOfElements(int **matrix, int mSize, int nSize)
{
int res = 0;
for (int i = 0; i < mSize; i++)
{
for (int j = 0; j < nSize; j++)
if (matrix[i][j] % 2 == 0 && matrix[i][j] < 0)
res++;
}
return res;
}
int main()
{
int
num,
**matrix,
mSize,
nSize;
cout << "Input a number: ";
cin >> num;
cout << num << "! = " << Factorial(num) << endl;
cout << "Input a matrix size: ";
cin >> mSize >> nSize;
matrix = new int*[mSize];
for (int i = 0; i < mSize; i++)
matrix[i] = new int[nSize];
for (int i = 0; i < mSize; i++)
for (int j = 0; j < nSize; j++)
cin >> matrix[i][j];
cout << "Num. of the elements = " << NumOfElements(matrix, mSize, nSize) << endl;
system("pause");
return 0;
} /* End of the 'main' function */
#include <cmath>
using namespace std;
int main()
{
int
numOfSides,
diameter;
double
polygonArea;
cout << "Input number of sides: ";
cin >> numOfSides;
cout << "Input the diameter of the inscribed circle: ";
cin >> diameter;
polygonArea = numOfSides * (diameter * diameter / 4) * tan(PI / numOfSides);
cout << "Polygon area = " << polygonArea << ";\nDelta = "
<< 1 - (PI * (diameter * diameter / 4)) / polygonArea << endl;
system("pause");
return 0;
} /* End of the 'main' function */