Read this first! New members AND Guests....

Ask for help with your homework/assignments in this forum!

Moderators: Darobat, RecursiveS, Dante Shamest, Bugdude, Wizard

Read this first! New members AND Guests....

Postby RecursiveS » Tue Sep 30, 2003 11:36 am

Homeworks/Assignments.

This forum is intended for use by students with homework or assignments
in C/C++.

Help will be given to students who can demonstrate that they have made a serious attempt to complete the assignment but have encountered difficulties in logic or code.

Do not expect the assignment to be completed for you - so please don't bother to post the text of the assignment unless it is accompanied by your attempt at solving/completing it.

Think about your question - a well asked question which gets to the heart of the problem is likely to get a quick response. A vague question that requires several posts to determine exactly what the problem is will meet with less response. Be specific.

Tell us what you expected or wanted to happen, and what actually did happen. If there are compiler errors - list them. The more information you give, the quicker your problem will be resolved.

And please, use the Code tag.....
Last edited by RecursiveS on Mon Sep 20, 2004 10:22 am, edited 1 time in total.
User avatar
RecursiveS
Site Admin
 
Posts: 1236
Joined: Thu Sep 18, 2003 8:33 am
Location: Dorset, UK

Postby Wizard » Sun Jun 27, 2004 2:21 pm

THE USE OF CODE TAGS:

Compare

int main() {
for (i = 0; i < 10; ++i)
std::cout << "The Next Number is: " << i << std::endl;
};

with

Code: Select all
int main() {
    for (i = 0; i < 10; ++i)
        std::cout << "The Next Number is:            " << i << std::endl;
};


That's what code tags do.
Code: Select all
[code] stuff goes here [/code]

And that's how you use them.
AND NOW YOU KNOW
User avatar
Wizard
Site Admin
 
Posts: 3226
Joined: Mon Sep 22, 2003 4:52 pm
Location: ON, CA

Postby Kybo Ren » Sun Jun 27, 2004 8:37 pm

Now the only problem is getting the people to read this sticky. Most guest/new users totally ignore the stickies.
Kybo Ren
C++ Beginner
 
Posts: 2049
Joined: Wed Feb 11, 2004 9:28 pm

Postby MXP » Mon Jun 28, 2004 12:39 am

Kybo_Ren wrote:Now the only problem is getting the people to read this sticky. Most guest/new users totally ignore the stickies.

Post a simple link to the sticky that explains the problem when you come across these users.
Need information on a function I've posted? Chances are it's at the MSDN.
MXP
 
Posts: 6506
Joined: Mon Sep 22, 2003 5:27 pm


Return to Homeworks

Who is online

Users browsing this forum: No registered users and 1 guest

cron