Math more math 2+2 =
// Math Tests Infamouskiller
// * / =
// operations
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int nNumberofArgs, char* pszArgs[])
{
int n1 = 10;
int n2 = 13;
int n3 = 54;
int n4 = 56;
int var = n1 * n2;
int var2 = n3 + n4;
cout << (n3) << ” Add ” << (n4) <<” = “ ;
cout << (var2) ;
cout << “\n”;
cout << (n1) << ” Times” << (n2) <<” = “ ;
cout << (var) ;
cout << “\n”;
system(“PAUSE”);
return 0;
}

Leave a Reply
You must be logged in to post a comment.