Quick actions

cmd+k|ctrl+k

Navigation

Languages

1.1

Snippet info

Language

Cpp

Visibility

public

Author

zvat.333333

Created

2018-10-07T15:31:56Z

Updated

2018-10-07T15:38:48Z

#include <iostream>
#include <math.h>
using namespace std;


int X,Y;
double B;
int main() {

    cout << "Введите X Y";
    cin >> X >>  Y;
    if (X>0) 
    {
        B = X + ((Y)/(cos(X)-(X/3)));
        cout <<B;
    }
    else
    {
        cout<<"\nErorr";
    }
    return 0;
}
INFO