C Board  

Go Back   C Board > Community Boards > Contests Board

Reply
 
LinkBack Thread Tools Display Modes
Old 08-12-2002, 11:09 PM   #1
Just because
 
ygfperson's Avatar
 
Join Date: Jan 2002
Posts: 2,502
IDEA: Redo a common program in a creative way

Take an old idea, and write it in a new way, like a recursive counting function
ygfperson is offline   Reply With Quote
Old 08-15-2002, 11:51 AM   #2
Linguistic Engineer...
 
doubleanti's Avatar
 
Join Date: Aug 2001
Location: CA
Posts: 2,425
we should make a really really cool Hello World program!!!
__________________
hasafraggin shizigishin oppashigger...
doubleanti is offline   Reply With Quote
Old 08-15-2002, 04:39 PM   #3
Just because
 
ygfperson's Avatar
 
Join Date: Jan 2002
Posts: 2,502
can you go into detail?
ygfperson is offline   Reply With Quote
Old 08-15-2002, 09:35 PM   #4
Linguistic Engineer...
 
doubleanti's Avatar
 
Join Date: Aug 2001
Location: CA
Posts: 2,425
we could have people judge it... [more qualified judges than in FD imho... perhaps the mods would judge...] in various categories... we should make it as portable with a standard [basic] gfx api, stuff like that...
__________________
hasafraggin shizigishin oppashigger...
doubleanti is offline   Reply With Quote
Old 08-16-2002, 01:40 AM   #5
&TH of undefined behavior
 
Fordy's Avatar
 
Join Date: Aug 2001
Posts: 5,219
Hmm....I got an idea for this...

Point of clarity - When you say creatative, does that mean just about anything goes as long as the result is as per a common program's output?
__________________
"If A is success in life, then A equals x plus y plus z. Work is x; y is play; and z is keeping your mouth shut."
Albert Einstein (1879 - 1955)


Board Rules
Fordy is offline   Reply With Quote
Old 08-16-2002, 08:38 AM   #6
Just because
 
ygfperson's Avatar
 
Join Date: Jan 2002
Posts: 2,502
prelude first suggested this idea, and she named someone's recursive counting program as an example.

ie:
Code:
int main () { int x; x = count(6); }
int count (int x) {
  if (x == 0) return 1;
  else { printf("%d",x); return x-1; }


}
hmm... that's not as elegant as i would like
but do you see my point? perhaps prelude can venture over and clarify things...
ygfperson is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
airport Log program using 3D linked List : problem reading from file gemini_shooter C Programming 3 03-04-2005 02:46 PM
I need some help with my program please. agentxx04 C Programming 9 09-26-2004 07:51 AM
Somewhat new to c++, adding Prime number and Sqrt featre to program... thynksheraze C++ Programming 3 01-14-2003 10:34 PM
IDEA: Obfuscate a common program as much as possible ygfperson Contests Board 23 01-11-2003 10:30 PM
Results for the Encryption Contest -- June 23, 2002 ygfperson A Brief History of Cprogramming.com 18 07-07-2002 08:04 AM


All times are GMT -6. The time now is 11:39 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22