0
Как можно сократить(уменьшить) код?
Не буду писать #include, перейду к коду: int a; int b; int c; srand(time(0)); a = rand()% 9 + 1; b = rand()% 9 + 1; c = rand()% 9 + 1; cout << a << b << c; return 0;
1 Odpowiedź
0
вот так:
srand(time(0));
for(int i=0; i<3; ++i)
cout<<rand()%9+1;