Everyone post their favorite program they made. It can be the source code or the actual program. The actual program would be nice. Also how do I post the actual program on here, I use dev c++.I'll post mine tomarrow.
My favorite program was written years ago. It was an ANSI artwork viewer that loaded the file into memory, let the user scroll through it, and did not require ANSI.SYS. My ANSI_IO unit was written in Pascal and updated to the SWAG. Google around and you can actually still find the library!
here is mine.its not advanced like yours but i thought it was cool because for a while i diddnt know how to let the computer choose your operation in a math problem
system("CLS");
cout << "please enter the first number you would like to use" << endl;
cin >> dnumber1;
cout << "please enter the operation you would like to use, +,-,*, or /";
cout << endl;
cin >> cchar;
cout << "please enter the second number you would like to use" << endl;
cin >> dnumber2;
switch (cchar){
case '+':
cout << "the answer is: " << dnumber1 << " + " << dnumber2 << " = "
<< (dnumber1 + dnumber2) << endl;
break;
case '-':
cout << "the answer is: " << dnumber1 << " - " << dnumber2 << " = "
<< (dnumber1 - dnumber2) << endl;
break;
case '*':
cout << "the answer is: " << dnumber1 << " * " << dnumber2 << " = "
<< (dnumber1 * dnumber2) << endl;
break;
case '/':
cout << "the answer is: " << dnumber1 << " / " << dnumber2 << " = "
<< (dnumber1 / dnumber2) << endl;
break;
default:
cout << "you cant use that operation";
}
cout << "would you like to start again (y or n)";
cin >> cagain;
}while (cagain == 'y' || cagain == 'Y');
My favorite program and the best program I've made so far got to be a game I called "Pinky's Challenge" for the iPhone. I know it's not the best game ever made, but I was/am pretty happy with it. Link: http://itunes.apple.com/us/app/pinkys-challenge/id466320503?mt=8 (includes screenshots).