z * pow(sin(z), 2) - 8
log(abs(sin(pow(z, 0.8
Программа:
C++:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
float z, y1, y2;
cin >> z;
y1 = z * pow(sin(z), 2) - 8;
y2 = log(abs(sin(pow(z, 0.8;
cout << y1 << endl;
cout << y2 << endl;
}
z * pow(sin(z), 2) - 8
log(abs(sin(pow(z, 0.8
Программа:
C++:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
float z, y1, y2;
cin >> z;
y1 = z * pow(sin(z), 2) - 8;
y2 = log(abs(sin(pow(z, 0.8;
cout << y1 << endl;
cout << y2 << endl;
}