You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
332 B
C++

TestRandom.cpp - Test program for random number class
#include "Random.h"
#include <iostream.h>
// Test program
int main( )
{
Random r( 1 );
for( int i = 0; i < 20; i++ )
cout << r.randomInt( ) << endl;
return 0;
}