Ответ:
c++
Объяснение:
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
int n;
double a;
cout << "a =";
cin >> a;
cout << "n =";
cin >> n;
cout << (a * (a - n) * (a - 2 * n) * (a - n * n)) << endl;
system("pause");
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
c++
Объяснение:
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
int n;
double a;
cout << "a =";
cin >> a;
cout << "n =";
cin >> n;
cout << (a * (a - n) * (a - 2 * n) * (a - n * n)) << endl;
system("pause");
return 0;
}