MY math owns

You love it making my own math operations I have so much learning to do Ugh…

// Math Tests Infamouskiller
//           * / =
//           operations
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;

int main(int nNumberofArgs, char* pszArgs[])
{
int n1 = 10;
int n2 = 10;
int var = n1 * n2;

cout << (n1) << ” Times” << (n2) <<” =  “  ;
cout << (var) ;
cout << “\n”;
system(“PAUSE”);
return 0;
}

~ by infamouskiller on July 21, 2008.

One Response to “MY math owns”

  1. [...] unknown: [...]

Leave a Reply

You must be logged in to post a comment.