#include <iostream>
#include <cstdlib>
#include <ctime> // содержит time()
using namespace std;

int main()
{
int randomDigits[3] = {};
srand(time(NULL));
for (int i = 0; i < 3; i++)
{ 
randomDigits[i] = rand();
cout << randomDigits[i] << endl;
} 
return 0;
}

Оценка - 1.0 (4)

2015-11-08 • Просмотров [ 986 ]