Quick actions

cmd+k|ctrl+k

Navigation

Languages

T№262

Snippet info

Language

Cpp

Visibility

public

Author

nxnxngh

Created

2018-10-28T09:41:58Z

Updated

2018-11-11T23:23:24Z

#include <iostream>
#include <cmath>
using namespace std;

int main() {
    int b,a,x,y,z,v;
    z = -5;
    v = 5;
     b = -2;
    a = 1;
 for (x=z;x<=v;x++)
 {
 y = (15 * a * (pow(x,3))* tan(x))/(sqrt(3-pow(sin(3*x),2)));
   cout<<"x ="<<x<<"\ty="<<y<<endl;
 }
    return 0;
}
INFO