Thread: problem with prog

  1. #1
    Registered User
    Join Date
    Jan 2002
    Posts
    5

    Angry problem with prog

    I have a problem with a program I have to do for college, its a student registration program, I have to enter A student registration number (4 chars ie x123) then a forename and a surname. you then have to enter amount of creitsto be sat. each credit will cost £75 with a feeof £95 per student, I have to put this all in and get an output, must have menu and must save to and read from a file. could someone help me please???

  2. #2
    ATH0 quzah's Avatar
    Join Date
    Oct 2001
    Posts
    14,826
    Code:
    int main ( void )
    {
        return 0;
    }
    You fill in the rest.

    Quzah.
    Hope is the first step on the road to disappointment.

  3. #3
    Banned Troll_King's Avatar
    Join Date
    Oct 2001
    Posts
    1,784
    And if you have a C/C++ compiler you can even start with:

    Code:
    int main()
    {
       //code goes here
       return 0;
    }

  4. #4
    Registered User
    Join Date
    Jan 2002
    Posts
    5

    prog

    I actually need help with the whole program!!!

  5. #5
    the hat of redundancy hat nvoigt's Avatar
    Join Date
    Aug 2001
    Location
    Hannover, Germany
    Posts
    3,130
    The reason they are mocking you is that you are dumping your assignment here without any clue you tried to accomplish it on your own. If you have a specific part which you cannot solve, a question about one special thing, come here and get it answered. If you have no clue about a single thing mentioned in your assignment, you should go back and tell your teacher you need to retake the course.

    We are helpful, if we see you tried to help yourself first. We are tired of people dumping their homework here hoping to find an easy way out.

    This is your assignment. Try to solve it. If you get stuck, come back here and ask for help on your specific problem.

    I would not have to write this lines if you had read this...

    We are helpful, if we see you want to learn. Feel free to come back any time you need help on a topic a bit smaller than 'all my homework'.
    hth
    -nv

    She was so Blonde, she spent 20 minutes looking at the orange juice can because it said "Concentrate."

    When in doubt, read the FAQ.
    Then ask a smart question.

  6. #6
    Registered User
    Join Date
    Dec 2001
    Posts
    421
    nicely put nvoigt.
    Quidquid latine dictum sit, altum sonatur.
    Whatever is said in Latin sounds profound.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Custom String class gives problem with another prog.
    By I BLcK I in forum C++ Programming
    Replies: 1
    Last Post: 12-18-2006, 03:40 AM
  2. Laptop Problem
    By Boomba in forum Tech Board
    Replies: 1
    Last Post: 03-07-2006, 06:24 PM
  3. Replies: 5
    Last Post: 11-07-2005, 11:34 PM
  4. Simple calculator prog
    By Stiks in forum C Programming
    Replies: 3
    Last Post: 10-20-2005, 11:00 PM
  5. half ADT (nested struct) problem...
    By CyC|OpS in forum C Programming
    Replies: 1
    Last Post: 10-26-2002, 08:37 AM