No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
For average, try double average; average = ( myList[0] + myList[1] ... ) / 10; A for loop is really better, but I will let you try it first. For number above average int i,numabove; for ( you do this part ) if ( myList[i] > average ) numabove++ Finally …
I want to use Python to make something similar to the fc command found in MS-DOS and Windows. How would I handle opening 2+ files and reading them a byte at a time for comparing?
I want to let users select a line of text by triple-clicking anywhere on that line. How can I use the API to support the feature?
Is it possible to have Netbeans set up for Cygwin and for Borland 5 free compiler then let me choose a compiler for each project?
You should consider making a soundex class. [URL="http://en.wikipedia.org/wiki/Soundex"]http://en.wikipedia.org/wiki/Soundex[/URL] This should help more than using regex.
I want to make Python code to make a new directory then put you into it, same as typing md and cd yourself, but only one command typed. I can use os.chdir() but after Python program exits I return to original directory, not going to new one. How do I …
SysFileTree() in REXX offers an easy way to work with all files (or subset) in a directory tree. For a summary of the function, see [URL="http://publib.boulder.ibm.com/infocenter/iadthelp/v6r0/index.jsp?topic=/com.ibm.etools.iseries.orxw.doc/orxw_ref614.htm"]http://publib.boulder.ibm.com/infocenter/iadthelp/v6r0/index.jsp?topic=/com.ibm.etools.iseries.orxw.doc/orxw_ref614.htm[/URL]. Which Python module offers similar function?
Consider VB.net instead. See [I]VB is Unicode, isn't it?[/I] under [URL="http://www.microsoft.com/globaldev/DrIntl/columns/003/default.mspx"]http://www.microsoft.com/globaldev/DrIntl/columns/003/default.mspx[/URL]
gcc is a part of Cygwin which you can get at [url]http://www.cygwin.com/[/url]
Write scores to a temp file then use wput (wput itself or something you do yourself using its source code) to copy the temp file to your web server. Then make a .shtml to display the scores to users.
The End.
Miyuki