Question:

Solve this series 0,3,8.................99 by c programming

by  |  earlier

0 LIKES UnLike

Solve this series 0,3,8.................99 by c programming

 Tags:

   Report

4 ANSWERS


  1. Project and programming help-http://javahelper.info/


  2. The program goes like this:

    int x = 1;

    s = 0;

    for (x=1;x<=10;x++)

    s = s + (x*x - 1);

    cout<<s;

    Hope this helps.

    your_guide123@yahoo.com

  3. ASP.NET Interview Question And Answers-http://aspdotnetanswers.blogspot.com/

  4. Shouldn't this be in the Mathematics section? First understand the logic of solving such a problem and then write the code that does it.

Question Stats

Latest activity: earlier.
This question has 4 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.