Computer Science, asked by shaliniravimails, 10 months ago

Use a "for loop to generate a ist of values of y = 4x2 - 12 from x = -6 to x = 6​

Answers

Answered by rupshanandy2
1

Answer:

for(i=-6;i<=6;i++)

{

    y=pow(x,2);

   y=4*y-12;

     cout<<y<<endl;

}

Explanation:

It is only for loop written in c++

Similar questions