]> git.llucax.com Git - z.facultad/75.40/1er-cuat/orden.git/blob - test/testrnd.cpp
Se pone fin de línea del sistema.
[z.facultad/75.40/1er-cuat/orden.git] / test / testrnd.cpp
1 #include <iostream.h>
2 #include <stdlib.h>
3 #include <time.h>
4
5 int main( void )
6 {
7    srandom( time(0) );
8
9    cout << random() << "\t" << time(0) << endl;
10 }