Search:

Type: Posts; User: furiousferret

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,891

    filling spaces in a string.

    I'm having an issue with a loop to fill in spaces of a string so it can display a table properly. I dont know why its not working but it should; Ive tried everything with this thing and no go. ...
  2. Replies
    10
    Views
    6,196

    worked fine for me...shrug

    worked fine for me...shrug
  3. Replies
    10
    Views
    6,196

    got it to work, the winning code is: ...

    got it to work, the winning code is:



    #include <iostream>
    #include <cmath>

    using namespace std;
    const int arraySize = 51;
  4. Replies
    10
    Views
    6,196

    I've been doing that with cout

    I've been doing that with


    cout << alphaArray[0] << sqrt(i) << ' ' ;
    cout << alphaArray[1] << sqrt(i) << ' ' ;
    cout << alphaArray[2] << sqrt(i) << ' ' ;
    cout << alphaArray[3] <<...
  5. Replies
    12
    Views
    2,138

    variables are placeholdes that can (but dont have...

    variables are placeholdes that can (but dont have to be) be changed which are reserved in memory. The difference between the short and long is memory size that is reserved, which is actually bits it...
  6. Replies
    10
    Views
    6,196

    Printing an array in lines of 10.

    I've tried several ways to do this but I either copy one variable 10 times or they all go on the same line. How do I display an array of 50 with 10 per line?

    Here is the code I already have


    ...
Results 1 to 6 of 7