1
« en: Sábado 7 de Junio de 2008, 00:22 »
fijate si te sirve este codigo para generar numeros aleatorios lo podes modificar para a tu gusto, espero y te ayude.
#include "stdafx.h"
#include <iostream>
#include <time.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int e, x, r;
cout<<"ingrese numero: ";
cin >>x;
r=time (NULL)* x;
srand (time (NULL)*r);
for (int i=1; i< x; i++)
e=rand();
cout<<e;
getchar();
getchar();
return 0;
}