Search:

Type: Posts; User: std10093

Search: Search took 0.19 seconds.

  1. Replies
    31
    Views
    4,350

    As I said about the switch cases in a previous...

    As I said about the switch cases in a previous post, do the following :
    1 - Remove the brackets from case 6 (line 64 and 86)
    2 - Remove the brackets from case 7 (line 89 and 97)
  2. Replies
    31
    Views
    4,350

    Write this #include as this ...

    Write this

    #include<iostream.>
    as this

    #include<iostream>
    and insert a right bracket } in line 106, like this

    }while ( choes != 0 );
  3. Replies
    31
    Views
    4,350

    ok, post the updated code :)

    ok, post the updated code :)
  4. Replies
    31
    Views
    4,350

    Having .h is not an error. But it should be good...

    Having .h is not an error. But it should be good to follow this tip.
  5. Replies
    31
    Views
    4,350

    See again post#8, the first sentence of it. ...

    See again post#8, the first sentence of it.

    Also leave a space before <iostream>, like this
    include <iostream>

    Check again for brackets
  6. Replies
    31
    Views
    4,350

    You read posts #8 and #9??? Are you sure you did...

    You read posts #8 and #9??? Are you sure you did everything mentioned there?
  7. Replies
    31
    Views
    4,350

    Take a look at Salem's picture. main should...

    Take a look at Salem's picture. main should return int, not void.

    You don't have to use braces in the switch for the cases. But if you, try to have the same style in all cases.

    EDIT : Also...
Results 1 to 7 of 7