Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Наведіть приклади введення одновимірного масиву a(6) у C++.
a[0]=-1; a[1]=2; a[3]=4; a[3]=2; a[4]=4; a[5]=2;
for (int i=0; i<=5;i++) cin>>a[i];
cin>>a[0]>>a[1]>>a[2]>>a[3]>>a[4];
cin>>a[0]>>a[1]>>a[2]>>a[3]>>a[4]>>a[5];
cout>>a[0]>>a[1]>>a[2]>>a[3]>>a[4]>>a[5];
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!