#include "stdafx.h"#include #include "conio.h" #include "math.h"
using namespace std;
int _tmain(){setlocale(LC_ALL, "Russian");float p, m;cout << "Вводим p - ";cin >> p;if (845 <= p < 924){ m = pow((0.658 * pow(p, 2)) / 8.56 * pow(10, 5) - pow(p, 2), 2); cout << "m - " << m << endl;}else if (780 < p < 845){ m = pow((0.456*pow(p, 2) / 8.33*pow(10, 5) - pow(p, 2)), 2); cout << "m - " << m << endl;}else cout << "Неправильное значение p";_getch();return 0;}