Monthly Archives: February 2013

COM401 C++ Calculating Averages

So here’s my code for a  program to calculate averages. Fortunately I’d already worked on something similar so I could recycle it ;D #include<StdAfx.h> #include <iostream> using namespace std; int main() { float w; float x; float y; float z;

Posted in COM401 Software Methods and Programming