Search:

Type: Posts; User: Stiopa

Search: Search took 0.01 seconds.

  1. Thread: How to do it?

    by Stiopa
    Replies
    11
    Views
    1,299

    I will try... I have a file: Field1 |...

    I will try...

    I have a file:


    Field1 | Field2 | Field3 | Field4 | ... | Fieldn
    ------------------------------------------------
    data | data | data | data | ... | data ...
  2. Thread: How to do it?

    by Stiopa
    Replies
    11
    Views
    1,299

    I thought about map, but then there will be some...

    I thought about map, but then there will be some time wasted for searching elements in the map...
    Is there a quicker way?
  3. Thread: How to do it?

    by Stiopa
    Replies
    11
    Views
    1,299

    How to do it?

    Example 1:


    int variable0 = 0;
    int variable1 = 1;
    int variable2 = 2;
    int varabile3 = 3;

    int someArray[4] = {10, 20, 30, 40};
  4. Replies
    1
    Views
    3,705

    What might be causing this ?

    I've got this code:


    #include "stdafx.h"
    #include <bitset>

    void someFunction(std::string str){
    std::bitset<8> firstChar[str[0]);
    }
  5. Replies
    23
    Views
    2,218

    int main(void) should be : int main()

    int main(void)
    should be :

    int main()
  6. Thread: Overloading ==

    by Stiopa
    Replies
    9
    Views
    1,339

    It works perfectly now. Thanks.

    It works perfectly now. Thanks.
  7. Thread: Overloading ==

    by Stiopa
    Replies
    9
    Views
    1,339

    Overloading ==

    This example is from 'You can program in C++' by Francis Glassborow, but doesnt seem to work.


    #include <iostream>
    #include <istream>
    #include <ostream>
    #include <string>
    class isbn10{...
  8. Replies
    2
    Views
    1,904

    Try this one: ...

    Try this one:

    http://primeupload.com/file/20529/birc.txt.html
  9. Replies
    2
    Views
    1,904

    How to make it easier?

    Requirements
    At the recent British Indoor Rowing Championships, twenty men contested the Open Heavyweight competition.

    The race takes place over the standard distance of 2000 metres and the time...
  10. Replies
    4
    Views
    1,060

    while ( n < 6) { cin >> n [c]; ...

    while ( n < 6)
    {
    cin >> n [c];
    c++;
    }


    You dont need it. You are supposed to input data from command line.
  11. Using goto isn't very good idea i think...

    Using goto isn't very good idea i think...
  12. Replies
    52
    Views
    21,450

    I think : grades = numbers[j-i];...

    I think :


    grades = numbers[j-i];
    numbers[j-1] = numbers [j];


    should be:
  13. Replies
    20
    Views
    2,814

    karlawarla: ye, Internet Computing course;p

    karlawarla: ye, Internet Computing course;p
  14. Replies
    20
    Views
    2,814

    karlawarla: are you studying at University of...

    karlawarla: are you studying at University of Westminster?;p
Results 1 to 14 of 15