Computer Picks NU over AUB

Colossus concurs!

sf-colos.jpg


 
friend ostream& operator<<(ostream& s,Vector v);

double mean()const; return numeric 'Heart'

IF 'Heart' const(Vector 3) then jump to 'TouchdownAuburn''

Return

END
Sorry to say it buddy, but you had a small error in there, it's okay though, i fixed it for ya'. Funny how one small phrase can make the whole program wrong! :lol:


no, that's the Auburn code for heart....it's a subroutine of the Nebraska code which designates a touchdown.

I think you will notice that the Nebraska algorithm stated the variable HuskerWin.

Your code just gives you a touchdown. There was no need to create the AuburnWin variable :lol:

 
Last edited by a moderator:
class matrix;

class imatrix;

class iVector;

class Vector

{

friend class matrix;

double *data;

int len;

public:

//constructors

Vector();

Vector(int n);

//copy operator

Vector(const Vector& original);

//destructor

~Vector();

//assignment operator

Vector& operator =(const Vector &original);

Vector& operator =(const Vector original); //not really different or needed

double& operator[](int i)const ;

Vector operator +(const Vector& v);

Vector operator -(const Vector& v);

friend Vector operator*(double,Vector);

friend Vector operator*(Vector,double);

//friend Vector operator*(Vector&);

//printing for debugging purposes

void rprint() const;

void print()const ;

void resize(int n);

friend double dot(const Vector& v1, const Vector& v2);

friend double norm(const Vector& v);

double norm(void)const;

void zero(void);

int length() const{ return len;}

int operator==(const Vector& v)const;

double max(void)const;

double min(void)const;

friend ostream& operator<<(ostream& s,Vector v);

double mean()const; return numeric 'Heart'

IF 'Heart' const(Vector 3) then jump to 'TouchdownAuburn''

Return

END
Sorry to say it buddy, but you had a small error in there, it's okay though, i fixed it for ya'. Funny how one small phrase can make the whole program wrong! :lol:
*SYNTAX ERROR* *Does Not Compute* :w00t :lol: :sarcasm

 
Back
Top