Search found 1 match

by neuro
Sun Nov 11, 2007 7:59 pm
Forum: General Discussion
Topic: My first (working) C++ program!
Replies: 2
Views: 6266

"no bugs..."

#include <cstdlib> #include <iostream> using namespace std; float GetNumber(); int GetRepeat(); void DispAns(float); float fAdd(float, float); float fSubtract(float, float); float fMultiply(float, float); float fDivide(float, float); int main(int argc, char *argv[]) { int function; //Number that get...