С++ как задать массив случайным образом int a[16]

0 голосов
34 просмотров

С++ как задать массив случайным образом
int a[16]


Информатика (12 баллов) | 34 просмотров
Дан 1 ответ
0 голосов

#include //для vs
#include
/* для vs :
using std::cin;
using std::cout;
using std::endl;
using std::srand;
using std::rand;*/
int main(){  
int a[16],i,n;
randomize();//<->srand;
 cout<<"EXIT-0\n";<br>while(n!=0 ){
M: cout<<"Vvedite Razmer Massiva (N<=16) :\n";<br>cin>>n;
if(n>16) cout<<"Error! N>16 . Try again\n";
if(n>16) goto M;
for (i=0;ia[i]=random(100);//<->rand();
cout<<endl;<br>for (i=0;icout<<a[i]<<" ";<br>cout<<endl;}<br>getch();
 return 0;
}

(647 баллов)