
-----------------------------------
Mr. Gruntsworthy
Thu Nov 30, 2006 11:18 am

Percentage Calculating program
-----------------------------------
This is a little program i wrote to test my knowledge in C++ so far. It's a little nifty program, but it was made with what i've learned and is by no means the way it should be written. 

But here it is, in a .zip format, complete with all source code files and the Debug folder with the executable program. Take a look at the source code and let me know what you think.

-----------------------------------
wtd
Thu Nov 30, 2006 12:37 pm


-----------------------------------
This should be in C++ Submissions, so if a mod could move it, that would be great.

That said, here's all we need to see:

//Name: Mike Seguin
//Date: Nov. 29, 2006
//Purp: A complex program that gives you the percent equivalent 
//      of a fraction.

#include 
#include 

int main()
{
  using namespace std;
  
  //Before all else, i want to declare this variable, because it 
  //gathers a keystroke for the program to continue, so that the user
  //can see the results of the program.

  char anyKey;

  //This is the prompt for if you want to continue/get percent
  cout 