Search:

Type: Posts; User: Reck

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,128

    perhaps it's just me, but it doesnt seem to work...

    perhaps it's just me, but it doesnt seem to work :(
  2. Replies
    5
    Views
    1,128

    determining the end of a piece of text

    int i = 0;
    string word;
    vector <string> sentence;

    do{cin >> word;
    sentence.push_back(word);
    i++;
    }while(i < 10);
  3. Replies
    4
    Views
    873

    how to get 50x50 arrays fully shown?

    basically I'm trying to output 50x50 arrays under Dos, but it seems Dos cant show more than 24-25 rows in one screen; although +50 colums don't seem much of a problem.

    How would one solve this?
Results 1 to 3 of 3