Something People Should Look At BEFORE Posting...

Reply

Join Date: Feb 2002
Posts: 898
Reputation: Tekmaven is a glorious beacon of light Tekmaven is a glorious beacon of light Tekmaven is a glorious beacon of light Tekmaven is a glorious beacon of light Tekmaven is a glorious beacon of light 
Solved Threads: 28
Moderator
Tekmaven's Avatar
Tekmaven Tekmaven is offline Offline
The C# Man, Myth, Legend

Something People Should Look At BEFORE Posting...

 
0
  #1
Jul 19th, 2003
I love this little thing, and it makes a lot of sense.

if ( $clue eq 'none' ) { read ( handbook | faq | man | others ) && search ( whatis | lists | forum | google ) } if ( $answer == 0 ) { post->question }
-Ryan Hoffman

.NET Specialist / Webmaster, Extended64.com.
Please do not email or PM me with support questions. Please direct them to the forums instead.
Reply With Quote Quick reply to this message  
Join Date: Apr 2004
Posts: 1
Reputation: zomets is an unknown quantity at this point 
Solved Threads: 0
zomets zomets is offline Offline
Newbie Poster

Re: Something People Should Look At BEFORE Posting...

 
1
  #2
Apr 11th, 2004
I cannot get the address line on internet explorer. Using Juno have to go through search. I am also using hotmail. it comes up in Spanish. When I click on Coreo it everts to English. It happeened suddenly Canot pinpoint anything.

I am using Windows 98 secnd edition my microp[rocessoe is MMx233

Where di I look for areply

Thank you
Reply With Quote Quick reply to this message  
Join Date: Dec 2003
Posts: 136
Reputation: The Soundman is on a distinguished road 
Solved Threads: 0
The Soundman's Avatar
The Soundman The Soundman is offline Offline
Junior Poster

Re: Something People Should Look At BEFORE Posting...

 
1
  #3
Apr 11th, 2004
Do you have a compiled version of that code? :mrgreen:

(I'm kidding... No really I'm kidding...)
The Soundman

I'm like a genius, only not as smart... :evil:
Reply With Quote Quick reply to this message  
Join Date: Mar 2004
Posts: 3,826
Reputation: Catweazle is a jewel in the rough Catweazle is a jewel in the rough Catweazle is a jewel in the rough Catweazle is a jewel in the rough 
Solved Threads: 144
Team Colleague
Catweazle Catweazle is offline Offline
Grandad

Re: Something People Should Look At BEFORE Posting...

 
1
  #4
Apr 13th, 2004
heh heh......

Rather eliminates the need for a forum, doesn't it?
Reply With Quote Quick reply to this message  
Join Date: May 2003
Posts: 307
Reputation: big_k105 is an unknown quantity at this point 
Solved Threads: 2
Team Colleague
big_k105's Avatar
big_k105 big_k105 is offline Offline
PFO Founder

Re: Something People Should Look At BEFORE Posting...

 
1
  #5
Apr 13th, 2004
nah it doesnt eliminate the need for forums jst for answering the same questions over and over and over. and for answering questions that could have been found really easily with a quick google search
Reply With Quote Quick reply to this message  
Join Date: Mar 2004
Posts: 3,826
Reputation: Catweazle is a jewel in the rough Catweazle is a jewel in the rough Catweazle is a jewel in the rough Catweazle is a jewel in the rough 
Solved Threads: 144
Team Colleague
Catweazle Catweazle is offline Offline
Grandad

Re: Something People Should Look At BEFORE Posting...

 
0
  #6
Apr 13th, 2004
It's actually quite remarkable just how many people, quite competent in their everyday computer usage, just don't have a high enough level of literacy to be able to cope with formulating search criteria to use.
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 6
Reputation: hlokzila is an unknown quantity at this point 
Solved Threads: 0
hlokzila hlokzila is offline Offline
Newbie Poster

Re: Something People Should Look At BEFORE Posting...

 
0
  #7
Jul 28th, 2004
Design and write a C++ program for the problem given below. Apply the rules of good programming style by making your program modular, and using parameters and local variables in subprograms or functions. Add comments where necessary for each function. Use meaningful variable names. Your program should be user friendly.

A grade 12 class wrote a test in information technology which counted 50 marks. Their teacher wants to find out how many pupils got a mark between 0 and 49 percent (i.e. how many pupils failed), and how many got a mark of 50 percent and more (i.e. how many pupils passed the test). He also wants to determine the average mark of those who failed and the average mark of those who passed. Your task is to write a C++ program to do this. The marks should be entered until -999 is typed in and at the end the two totals calculated as well as the two averages have to displayed.
Your program should make use of the following 3 functions to solve the problem:

readInput( ): In this function, the end-user(teacher) should be prompted for a mark to be entered. After the mark has been captured it should be send back to the calling function, namely main( )

calculateTotals( ): Calculates the totals up to that point. In this function the mark that has just been read in, must be investigated to see which totals should be updated. It will be necessary to update two totals every time: One (1)should be added to the number of pupils in the specific group, and the mark should be added to the total of marks in that group (because later you have to calculate the average). You will need one or more if statements

showResults( ): displays the number of pupils in each group as well as the average mark for each group. However if the number of pupils in the group is zero, the average should not be calculated and displayed
Reply With Quote Quick reply to this message  
Join Date: Dec 2003
Posts: 2,414
Reputation: alc6379 has a spectacular aura about alc6379 has a spectacular aura about alc6379 has a spectacular aura about 
Solved Threads: 123
Team Colleague
alc6379's Avatar
alc6379 alc6379 is offline Offline
Cookie... That's it

Re: Something People Should Look At BEFORE Posting...

 
0
  #8
Jul 28th, 2004
Originally Posted by hlokzila
Design and write a C++ program for the problem given below. Apply the rules of good programming style by making your program modular, and using parameters and local variables in subprograms or functions. Add comments where necessary for each function. Use meaningful variable names. Your program should be user friendly.

A grade 12 class wrote a test in information technology which counted 50 marks. Their teacher wants to find out how many pupils got a mark between 0 and 49 percent (i.e. how many pupils failed), and how many got a mark of 50 percent and more (i.e. how many pupils passed the test). He also wants to determine the average mark of those who failed and the average mark of those who passed. Your task is to write a C++ program to do this. The marks should be entered until -999 is typed in and at the end the two totals calculated as well as the two averages have to displayed.
Your program should make use of the following 3 functions to solve the problem:

readInput( ): In this function, the end-user(teacher) should be prompted for a mark to be entered. After the mark has been captured it should be send back to the calling function, namely main( )

calculateTotals( ): Calculates the totals up to that point. In this function the mark that has just been read in, must be investigated to see which totals should be updated. It will be necessary to update two totals every time: One (1)should be added to the number of pupils in the specific group, and the mark should be added to the total of marks in that group (because later you have to calculate the average). You will need one or more if statements

showResults( ): displays the number of pupils in each group as well as the average mark for each group. However if the number of pupils in the group is zero, the average should not be calculated and displayed
Um... does this post mean that $clue eq 'none' ?

We don't do homework here. If you'd like some help on some type of assignment, post what you've done in the programming forum, and then ask us what you need help with.
Alex Cavnar, aka alc6379
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 6
Reputation: hlokzila is an unknown quantity at this point 
Solved Threads: 0
hlokzila hlokzila is offline Offline
Newbie Poster

Re: Something People Should Look At BEFORE Posting...

 
0
  #9
Jul 28th, 2004
can somebody please help me or just give some clue on how to tackle the problem i posted
Reply With Quote Quick reply to this message  
Join Date: Feb 2002
Posts: 12,054
Reputation: cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light 
Solved Threads: 129
Administrator
Staff Writer
cscgal's Avatar
cscgal cscgal is offline Offline
The Queen of DaniWeb

Re: Something People Should Look At BEFORE Posting...

 
0
  #10
Jul 28th, 2004
First of all, this is the wrong place to post questions. Second of all, we don't help with homework problems unless you show some effort on your part. Check out the C++ forum. Post your question there. Show us what you've done on it so far and where you're stuck. And we'll be more than happy to help you. Just not here in this forum/thread.
Dani the Computer Science Gal
Follow my Twitter feed! twitter.com/DaniWeb
And if you're interested in Internet marketing there is twitter.com/DaniWebAds
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Geeks' Lounge Forum
Thread Tools Search this Thread



Tag cloud for Geeks' Lounge
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC