mrvasilev2012
?>

Какой нужен размер для баннера? на ютуб? ​

Информатика

Ответы

Petrosienko_Larisa,1908

2560 х 1440

две тысячи пятьсот шестьдесят х тысяча четыреста сорок  

bikemaster
#include <iostream>

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 */
ikalabuhova
#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;

  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 */

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

Какой нужен размер для баннера? на ютуб? ​
Ваше имя (никнейм)*
Email*
Комментарий*