16 lines
332 B
C++
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;
|
||
|
}
|