CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: weirdom3

Search: Search took 0.02 seconds.

  1. Counting a Specific word from a Text File in C++

    Hi. I am a beginner in C++. I have this assignment. I've spent about a whole day completing this assignment but i don't know how to do that.

    Here is my assignment question:

    The user will first...
  2. Re: Creating C++ program to make a Sine fuction without any library other than iostre

    that was some other problem. i cannot use math library and i have to call the function of factorial and power in the function of sine. i dont know how to do that. without using sine function, i can...
  3. Creating C++ program to make a Sine fuction without any library other than iostream?

    Hi. I am a beginner in C++ programming. My assignment is to create a C++ Program to find the sine of a number without any library other than iostream by using Taylor Series:

    sin (x) = (x/1!) -...
  4. Replies
    22
    Views
    64,185

    Re: Write a C++ program to compute Sin(x)

    How many times should I make the loop go on if not 1000??
  5. Replies
    22
    Views
    64,185

    Re: Write a C++ program to compute Sin(x)

    the series is:

    x x^3 x^5 x^7 x^9 x^n
    sin (x) = ----- ─ ---- + ---- ─ ---- + ----- ─ …………. ------
    1! 3! 5! 7! ...
  6. Replies
    22
    Views
    64,185

    Write a C++ program to compute Sin(x)

    Hi. I'm having problem writing this program as my assignment. I've spent hours on this but still i can't get the right answer.

    Here is the question:
    Write a C++ program to compute Sin(x)...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured