Quick actions

cmd+k|ctrl+k

Navigation

Languages

258

Snippet info

Language

Cpp

Visibility

public

Author

maloy-

Created

2018-10-31T19:21:02Z

Updated

2018-10-31T19:21:02Z

#include <iostream>
#include <cmath>
using namespace std;
int main() {
    int a = 2, b = 4;
    for ( int x = -5; x<=5 ; x++){
        
        cout << "y=\t" << ( 3.2 * a * b * (x^2)) - (   (5*a*sqrt(1+2*pow(cos(pow(x,2)),3)))    /    (4*a*x - b)   ) << endl ; 
    }
    
    
    
    return 0;
}
INFO