Search:

Type: Posts; User: JamesMI

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    3,266

    After about 4 days of searching, I finally...

    After about 4 days of searching, I finally figured it out. I guess it helps to check the event viewer every now and again. I found that the problem was coming from wmasf.dll, found another copy in...
  2. Replies
    7
    Views
    3,266

    yep, I've tried avi,mpg,txt, just about...

    yep,
    I've tried avi,mpg,txt, just about everything else. It only happens with mp3's.

    oh, and sorry about posting in the wrong board. I didn't even think about the tech board. I figured the...
  3. Replies
    7
    Views
    3,266

    mp3 file properties in windows xp

    Hello,

    I having problems viewing the properties of mp3 files by right clicking in windows explorer. When I try to view the properties it brings up a error report screen wanting to send a report...
  4. Replies
    16
    Views
    5,659

    I have both the 89 and the 86. In some of my...

    I have both the 89 and the 86. In some of my college math classes the 89 was not allowed, but the 86 was. I found the 89 to be very helpful with calc 2 and 3 as well as diff eq. I found that for...
  5. Replies
    6
    Views
    2,300

    I would recommend the Atmel AVR chips. There is...

    I would recommend the Atmel AVR chips. There is a avr-gcc compiler that runs on linux or windows. You can check them out at http://www.atmel.com . There is a very helpful site at...
  6. Replies
    7
    Views
    8,751

    If all you want it for is your homework then do...

    If all you want it for is your homework then do you have a graphing calculator. I know the TI-86 and TI-89 both can do what you ask. I own both and find the TI-86 easier to use when working with...
  7. Replies
    9
    Views
    1,942

    I looked over you code again (I was bored), and...

    I looked over you code again (I was bored), and changed it to:



    #include <iostream>
    #include <string>
    #include <cstdlib>

    using namespace std;
  8. Replies
    9
    Views
    1,942

    I'm not sure what is wrong with your code...

    I'm not sure what is wrong with your code (haven't really looked yet). If all you want to do is convert a number to a string you could do the following:



    #include <iostream>
    #include...
  9. Replies
    2
    Views
    833

    I see a few problems with your code. There are...

    I see a few problems with your code. There are no code tags, "void main()" is incorrect, as well as include statements.

    Anyway, to answer you question on the percentage, you are just calculating...
  10. Replies
    5
    Views
    58,041

    Invert and reverse bits.

    Hello,

    I need to invert and reverse the bits in a one byte value. For example:

    00111111 original
    11000000 inverted
    00000011 reversed

    Here is what I have. It works, but I was wondering...
  11. Replies
    3
    Views
    1,281

    The Fib. Seq. is defined as... f(1)=1 f(2)=1...

    The Fib. Seq. is defined as...
    f(1)=1
    f(2)=1
    f(n)=f(n-1)+f(n-2)

    so for example, the first 5 terms are...

    f(1) = 1 //by definition
    f(2) = 2 //by definition
    f(3) = f(n-1) + f(n-2) =...
  12. Replies
    12
    Views
    1,844

    After doing a quick search on google, I found an...

    After doing a quick search on google, I found an example in c for finding primes that is much faster than the one I wrote. It can easily be converted to c++ or you can check the authors example in...
  13. Replies
    12
    Views
    1,844

    After I posted that, I realized I could make it a...

    After I posted that, I realized I could make it a little faster by not checking numbers divisble by 3. I'll try to make the change and repost it.

    I realize it's not quite what you want because...
  14. Replies
    12
    Views
    1,844

    This seems to work, i checked the number of...

    This seems to work, i checked the number of primes up to 100, 1000, 10000 against a list I found on the internet and seems to check out ok. I am in now way an expierienced programmer, so I am sure...
  15. Replies
    17
    Views
    12,001

    WOW, Thanks for all the replies. I tried the...

    WOW, Thanks for all the replies.

    I tried the suggestion by shiv_tech_quest, and it worked just fine.
    I tried the following two programs and they both work with the desired result just as the one...
  16. Replies
    17
    Views
    12,001

    How to pass an array of strings by reference?`

    Hello,

    I'm trying to pass an array of strings to a function by reference and can't seem to figure out how to do it. Here is what I'm tring to do.

    #include <string>

    void goodbye(string...
Results 1 to 16 of 16