✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Запишите результат выполнения программы:
#include<iostream>
using namespace std;
int main
{ int k, sample[8];
for (k=0; k<8; k++)
{ if ( k/2 == 0 ) sample[k]=10-k;
else sample[k]= k;
cout<< sample[k];
}
return 0;
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!