Quick actions

cmd+k|ctrl+k

Navigation

Languages

25

Snippet info

Language

Cpp

Visibility

public

Author

misha127831

Created

2018-09-25T06:34:07Z

Updated

2018-09-25T17:06:00Z

#include <iostream>
#include <cmath>

using namespace std;

int main() {
    cout << "Введите переменные";
    double x, y, z;
    cin>>x>>y;
    z = (x-pow(10,sin(x))+cos(x-y));
    cout<<"Ответ = " <<z ;
    return z;
}
INFO