Есть ответ 👍

С++ Можете проверить написанную программу вычисления выражения: #include
#include
using namespace std;
int main()
{
float x, L;
setlocale(0,"");
cout > x;

L = 1,51*(pow(cos(x),2))+ 2*(pow(cos(x),3));
cout << endl << "L = "<< L < return 0;
}

261
326
Посмотреть ответы 2

Ответы на вопрос:


Правильная программы выглядит так:

#include <iostream>

#include <cmath>

using namespace std;

int main()

{

float x, L;

setlocale(0, "");

cin >> x;

L = 1, 51 * cos(pow(x, 2)) + 2 * pow(x, 3);

cout << endl << "L = " << L;  

return 0;

}

operat0r
4,6(50 оценок)

Вроде так  10000+3000+400+40+4 

Популярно: Информатика