Search:

Type: Posts; User: Shahram_z

Search: Search took 0.01 seconds.

  1. intresting if you can speak german refer here ...

    intresting if you can speak german refer here


    http://web.dadanini.com:7980/books/C++%20in%2021%20Tagen/kap05.html


    if english here

    http://vip.6to23.com/dcyu/ANSICPP/No1/5.html
  2. Replies
    17
    Views
    1,844

    int main() { //right after your string...

    int main()
    {
    //right after your string decleration.. do this...
    string choice (" ");
    int first, second;

    and you dont have to use it twice... in if statments.. as first second, and then...
  3. IT works perfect on VS 6.0 No further changes...

    IT works perfect on VS 6.0 No further changes needed... regards
  4. Replies
    17
    Views
    1,844

    Oh i shouldn't forget declare your int in main...

    Oh i shouldn't forget declare your int in main not within the f statement, plus remove that system pause thingi it pauses if you are using a .net complier...
  5. Replies
    17
    Views
    1,844

    It should work,copy and paste, but if you are...

    It should work,copy and paste, but if you are taking a C++ course you should know all this .. v important...

    I don't recommend declearation of too many ints..




    #include <iostream>...
  6. Replies
    17
    Views
    1,844

    you declared choice ast Int and comparing to a...

    you declared choice ast Int and comparing to a string ... fix that first
  7. Replies
    16
    Views
    2,326

    Hell my friend, I blieve someone posted...

    Hell my friend,
    I blieve someone posted something here in regards to syntx errors u are having, I strongly recommend the same sites to be viewed.

    here is how I so far fixed .... going from here...
  8. Replies
    32
    Views
    4,218

    You wasted alot of code there LOL #include...

    You wasted alot of code there LOL



    #include <iostream>
    #include <cstring>
    using namespace std;

    const int size = 500;
    char original_string[size], reversed_string[size];
  9. Replies
    4
    Views
    1,980

    Ok !

    Well the question was about the output.. I got it to print out 45 and 81 but this was my question how can i get the program to do the result below for number comparison?

    Data items in ascending...
  10. Replies
    4
    Views
    1,980

    Bubble Sorting HELP WANTED !

    This bubble sort is kinda freaks me out. I got it two other ways with Number of comparisons = 48 and 81 but this one ....


    Data item in original order

    2 6 4 8 10 12 89 68 45 37

    after...
  11. Replies
    3
    Views
    1,452

    Here is the code it might help you a bit.

    #include <iostream>



    using std::cout;
    using std::endl;

    #include <iomanip>
    using std::setw;
  12. Replies
    3
    Views
    1,452

    Need Help With This Bubble Sort

    This bubble sort is kinda freaks me out. I got it two other ways with Number of comparisons = 48 and 81 but this one ....

    Anyone can help me please email me at [email protected]

    Data item...
  13. Replies
    2
    Views
    1,935

    Help needed with a Project. ASAP Thanks

    The description for the following problem is that :
    I can not move my months in to the 3 dimentional array.. I have done this coding already

    1.get year from keyboard
    2.generate a yearly...
Results 1 to 13 of 13