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 */
ikalabuhova
13.05.2021
#include <iostream> #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;
2560 х 1440
две тысячи пятьсот шестьдесят х тысяча четыреста сорок