[try Beta version]
Not logged in

 
What's The Best Program You Made?

Jan 8, 2011 at 6:45pm
closed account (zb0S216C)
What does it do?.
Last edited on Jan 8, 2011 at 6:45pm
Jan 8, 2011 at 6:54pm
Haven't made anything particularly impressive, probably the best was a direct3d engine.
Jan 8, 2011 at 6:57pm
The Hello World Program.

No just kidding.

A large geometry equation calculator.

Even then It kind of sucked :).
Jan 9, 2011 at 12:31am
My best program is this:

1
2
3
4
5
6
7
8
9
10
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>

int main()
{
      char kl[30];
      sprintf(kl,"kill %d",getpid());
      return kl;
}



Just kidding :)
Jan 9, 2011 at 3:24am
Program that will display my name. hehehe, my first program is my best program.

http://codewall.blogspot.com
Jan 9, 2011 at 5:12am
closed account (4Gb4jE8b)
Well it wasn't in C++, but my best overall program was a program that randomly selected names out of a group, and saved the group as well. I made it with an awesome UI and everything :P
Jan 10, 2011 at 8:30pm
Nothing I'm really proud of in a way like: "WOA LOOK WHAT I DID.". More like "Lol, look what I did.". Type WANOP into the search field up above.
Jan 10, 2011 at 8:41pm
The best program I made was a simple binary calculator which took everything I learned in my discrete structures class and reapplied it in my C++ programming class. I made it work using the same rules a full adder uses for computer arithmetic.
Jan 10, 2011 at 9:36pm
I'm still a newbie to the language.

The best that I done is that solving the 8-queen problem using constraint sanctification arc
consistency.

it's my best :(

Jan 10, 2011 at 9:42pm
Best I've ever done is a program that lets you convert sentences to and from morse code. Numbers 0-9 included.
Jan 11, 2011 at 12:16am
closed account (D80DSL3A)
I will say its my user vs. PC program for Scrabble. Writing the code for the computer to find and make its own plays was the challenging part. It works well enough that I have a tough time beating it. Here's a link: http://www.mediafire.com/fun2codeApps#0,1
It's in the ScrabblerDemo folder. The 3 text files must go with the .exe file.
Jan 11, 2011 at 12:27am
@fun2code

I'm quite interested in how your program recognised what was a real word and what wasn't. I can't think of a way of doing that, short of hard coding every word in the dictionary into it =P
Jan 11, 2011 at 12:35am
To sanzilla eight queen problem was that a school problem ?
Jan 11, 2011 at 1:00am
closed account (N6A4jE8b)
The best program I made was a calculator.

It added, subtracted, multiplied, divided, had beeping sounds from Windows API programming
and tested to make sure you entered the correct methods pre-calculations(such as '+', '-', '*' and '/').

Is that good?

EXTRA: It also displayed the calculated values in sentences to make it more than just numbers.
Last edited on Jan 11, 2011 at 1:01am
Jan 11, 2011 at 1:12am
closed account (D80DSL3A)
@quirkyusername
The program uses a list of words in a text file for its plays.
Jan 11, 2011 at 1:35am
Writing the code for the computer to find and make its own plays was the challenging part.


Every developer who have develop some applications that is game in nature would find the above statement quite true. It is very hard for us to make the computer 'smart' to beat humans. Afterall computer take a set of instructions from us developers to execute their operations.

This is why in games development, there is always claims from some games maker that their computer AI better, smarter, etc for which no one really know actually.

PS I am always in the process of making the computer 'smarter' and 'faster'. One trick is to introduce timer for your game which will beat some humans cuz computer process much faster and human need to think and viola computer beat human in say 7 out of 10 rounds is a commendable feat already :P
Jan 11, 2011 at 1:38am
closed account (N6A4jE8b)
Not fond of English much, are you?
Jan 11, 2011 at 1:40am
Not fond of English much, are you?


English is not my native language but I think I manage to get my view across so other forum-ers can understand would be good enough isn't it ? :)
Last edited on Jan 11, 2011 at 1:52am
Jan 11, 2011 at 1:42am
closed account (N6A4jE8b)
Well yeah, no offense.
Topic archived. No new replies allowed.