Favorite program

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.
Last edited on
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!
Cool!! Was it free or did you make money off it.
Here's one I made. I listed it under a thread called 'Coolest thing you've done in a console'. Look here to see it.
http://cplusplus.com/forum/beginner/49440/
. Actually, there's two of them. In the second one, I added moving text.
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

#include <iostream>

using namespace std;

int main(){

char cchar;
double dnumber1;
double dnumber2;
char cagain;

do{

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');




system("pause");
return 0;
}
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).
@Stupebrett That's pretty cool can't wait to play it!! How long did it take you to make it?
A few weeks I think. It was the first time I had used Cocos2D (game library), so I was learning it while making the game, therefore it took some time.
stupebrett,chect your private messages
Topic archived. No new replies allowed.